Linked List를 활용한 데이터 관리 예제
		#include 
#include 
#include 
#define MAX 255
typedef struct _std{
    int no,kor,eng,math;
    char name[MAX];
    float avr;
    struct _std * next;
}std;
int main()
{
    std *head = NULL, *cur, *newstd, ** ptr, *temp, *del_ptr, *find_ptr,*pre_ptr;
    int kno,count, i, j,del_no,find_no;
    float kko,ken,kma;
    char str[MAX],tmp;
    FILE *wfp;
    while(1)
    {
        system("cls");
        printf("<< MENU >>n");
        printf("1.데이터 입력n");
        printf("2.데이터 ...	
	
