新手第一次開始用fopen這些指令
也是網路上參考資料寫出來的code
我想要從txt檔中讀取好幾串binary 進來處理
例如:
00100001000010100000000010111110
10101101010100010000000000000100
10001101010100100000000000000100
00001000000000000000001001010110
我使用
#include<stdio.h>
#include<stdlib.h>
int main()
{
FILE *fp;
int num;
fp = fopen("binary.txt","r");
fscanf(fp,"%d",&num);
printf("num= %d " ,num) ;
fclose(fp);
system("pause");
return 0;
}
但是為什麼我printf 出來的都是 num= 688670854 這樣的值呢
請問code哪邊需要修正
謝謝