Why not, if you are not using it the way main() , that is, as a function.
/* Error -- > */ int main() { return 1; } // Redefinition of main() struct main{}; // ok int main = 0 ; // error int main(void) { int main=0; // But has to be local. goto main; printf("Hello"); main: printf("World"); }
Remember main is NOT keyword. But I guess we haven't run out of words, so why use it?
Sadique
source share