Dear all, I am using the keil UV2 for one of my application. In this application, I need to include files concept. For this, I write the program as follows, #include <stdio.h> int main() { FILE *fp; fp = fopen("c:\\RTC_Configuration.txt", "r"); } After compiling this program, it was showing the following error,
error c202: 'FILE' : undefined identifier error c202: 'fp' : undefined identifier
Exactly, what is this error? how can I removed from the application? Whether keil UV2 will support files concept or not?
Regards, Vijay