问题
I am just learning C
I have written the following:
void main(void)
{
unsigned int curr_dat = 0; // The current dat file to use
unsigned char ch = 0; // Key entered at keyboard
unsigned char lastkey = 0; // Last key entered (movement command)
FILE *fp;
}
However i am getting these errors when trying to compile:error C2065: 'FILE' : undeclared identifier
error C2065: 'fp' : undeclared identifier
warning C4552: '*' : operator has no effect; expected operator with side-effect
I'm unsure why as i believe FILE
is a valid identifier in C
I am using Developer Command Prompt for VS2012 to compile
回答1:
FILE is declared in stdio.h. Add #include <stdio.h>
to the top of your file.
回答2:
FILE
is type from stdio.h
. To use it you have to add:
#include <stdio.h>
at the top of your file. The result can be:
#include <stdio.h>
void main(void) {
unsigned int curr_dat = 0; // The current dat file to use
unsigned char ch = 0; // Key entered at keyboard
unsigned char lastkey = 0; // Last key entered (movement command)
FILE *fp;
}
来源:https://stackoverflow.com/questions/39041040/undeclared-identifier-unsure-as-to-why