// Preprocessor directive mention in <> formate :
#include "stdio.h"
#include "stdlib.h"
#include "math.h"
#include "string.h"
#include "limits.h"
#include "stddef.h"
#include "stdint.h"
...
int main()
{
FILE *fin, *fout; //Error[Pe020]: identifier "FILE" is undefined
...
...
...
fprintf(stderr, "%s\n", opus_get_version_string());
//Error[Pe020]: identifier "stderr" is undefined
}
As per above code I got an two Errors :
1) "Error[Pe020]: identifier "FILE" is undefined"
when I found stdlib.h then there are no any kind of "FILE" directive define or typedef. So,please tell me which changes needed in stdlib.h or stdio.h
2) Error[Pe020]: identifier "stderr" is undefined
So,In which header file stderr define ?
Please tell me How to solve above errors ?
Thanks in advance.