char temp[30];

 int a, b, c;

 char munja;

 FILE* input = fopen("Test.txt", "wt");

 fprintf(input, "2 * 1 = 2");

 close(input);

 input = fopen("c:\\Test.txt", "rt");

 fscanf(input, "%d %c %d = %d", &a, &munja, &b, &c);

 printf("%d %c %d = %d", a, munja, b, c);

 close(input);

임시배열을 만들고 Test.txt 파일에다 2 * 1 = 2라는 문자열을 삽입한뒤

다시 읽기전용으로 열어준 뒤

fscanf해서 콘솔창에 띄울려고 하는데 도통 나오질 않네요..