belongs to collection: C Programs
We can write c program without using main() function. To do so, we need to use #define preprocessor directive.
#include<stdio.h> #define start main void start() { printf("Hello"); }
Output:
Hello
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Output: