#include<stdio.h>
#include<stdlib.h>
int main()
{
FILE *fptr;
char ch;
fptr = fopen("love20141224.txt","r");
if (fptr == NULL)
printf("開檔失敗");
fclose(fptr);
printf("\n您好\n");
return 0;
}
http://i.imgur.com/O682yvB.jpg
http://i.imgur.com/DQJ0gFG.jpg
http://i.imgur.com/lEZQRSR.jpg
我打開檔案,打開是成功的,但沒辦法讀取裡面的檔案,怎麼回事
http://i.imgur.com/jw8sfG3.jpg
第28行為什麼reverse只有sPtr[1]而已,不太懂這行的遞迴關係,只遞迴第1元素位址?
不是要一層層遞迴嗎
及
第29行只有sPtr[0]而已,只只印出陣列第0元素?
感謝大大替我解惑,感恩!