我是新編程的C語言編程人員,我試圖編寫一個程序來讀取名爲input的文件的上下文。爲什麼我的C程序不工作?從文件中讀取
#include <stdio.h>
#include <stdlib.h>
int main()
{
char ch;
FILE *in;
in = fopen("input","r");
printf("The contents of the file are\n");
fscanf(in,"%c",&ch);
printf("%c",ch);
fclose(in);
return 0;
}
請描述的內容'輸入文件,以及實際上發生了什麼行爲,以及您期望什麼而不是。 –
輸入文件只是隨機文本測試例如,你好世界 –
所以你回答了3個問題提出的第一個... –