C中最简单的读取一个文本文件

引用标准库中的stdio.h其中包含了磁盘流操作的相关函数,代码如下:

#include <stdio.h>

int main(int argc, const char * argv[]) {

FILE *fp;
char ch;
if((fp=fopen("/Volumes/Macintosh HD 2 1/mymac/macframework/cdemo2/cdemo2/a.txt","rt"))==NULL)
{
    printf("Cannot open file strike any key exit!");
}
ch=fgetc(fp);
while (ch!=EOF)
{
    putchar(ch);
    ch=fgetc(fp);
}
fclose(fp);

return 0;

}