我創建了一個函數來檢查打開的文件是否是位圖。我寫了以下功能:在檢查位圖圖像時遇到問題
int auth(FILE *fp)
{
if (fgetc(fp)!='B' || fgetc(fp)!='M'){
return 0;
}
else{
return 1;
}
}
但是這是給ERROR:"FILE and fp not declared in this scope"
。
有人可以幫助我嗎?
你鍵入'FIle',不'FILE'。 – idoby