Tuesday 5 June 2018

C Program without main() function

#include<stdio.h>   
 #define start main   
void start() {   
   printf("Hello");   
}

OUTPUT:-
                         Hello

No comments:

Post a Comment