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

Popular posts from this blog

C Program to print Fibonacci Series