I have just started writing C code in dev-c++. The programs are running fine, but each C program shows me the following warning:
[Warning] command line option "-fno-access-control" is valid for C++/ObjC++ but not for C
The test program I used was:
#include<stdio.h>
int main(){
system("pause");
return 0;
}
After searching a lot all I could find was:
-fno-access-control Do not obey access control semantics
Can anyone please explain, what is this all about?
Thanks..