C/C++面試題目
將一個(gè)文本文件的內(nèi)容按倒序打印出來
解:#include
main()
#define m 20
{
char str1[m];
int i;
FILE *fp1;
if((fp1=fopen(“file2.c”,”r”))==NULL)
{
printf(“cannot open the file\n”);
exit(0);
}
i=0;
While(!feof(fp1))
{
strl[i]=fgetc(fp1);
i++;
}
while(i!=0)
{
i–;
Putchar(str1[i]);
}
fclose(fp1);
}
【C/C++面試題目】相關(guān)文章: