#include <stdio.h> int main() { FILE *fp = fopen("file.txt", "r"); char c; while ((c=getc(fp)) != EOF) { printf("%c", c); } fclose(fp); ...
確定! 回上一頁