C Program to print a message without main() function
// C Program to print a message without main() function
#include<stdio.h> //header file declaration
#define start main // #define preprocessor directive
void start()
{
printf("WELCOME TO MY BLOG"); //print message
}
OUTPUT:
Comments
Post a Comment