Milestone 5 Final Application Release 源码
里程碑5最终申请发布 #include int main(){/ *指向文件/ FILE fp1的指针; / *字符变量,用于读取文件* / char c的内容; /* Opening a file in r mode*/ fp1 = fopen_s("C:\\myfiles\\newfile.txt", "r", 1); /* Infinite loop –I have used break to come out of the loop*/ while (1) { c = fgetc(fp1); if (c == EOF) break; else printf_s("%c", c); } fclose_s(fp1); return 0; }
文件列表
Milestone-5-Final-Application-Release-main.zip
(预估有个2文件)
Milestone-5-Final-Application-Release-main
Use of file I
0 with secure techniques
475B
README.md
516B
暂无评论