Thread
:
did not include header file
View Single Post
answerme
Ambitious contributor
19Dec2007,10:26
Code:
main() { const int Men = 10; int *Women = &Men; *Women = 20; printf("There are %d men\n", Men); }
I havent include #include header file but still prg is running how is it possible.