InterviewSolution
Saved Bookmarks
| 1. |
Can we compile a program without a main() function? |
|
Answer» Yes, we can COMPILE a program WITHOUT MAIN() function USING Macro. E.g. #include<studio.h>#define abc mainint abc (){printf("Hello World ");return 0;} |
|