Spread the love

The tittle of this article looks Dangerous at first sight but the program is actually pretty simple. Here is the code you can play with it.

 

/* Code without main( ) */

#include<stdio.h>

#define fun main

int fun(void)
{
    printf("www.firmcodes.com");

    return 0;
}

 

Output

Running C code without main

 

If you like this Article, then don’t forget to Click on Social likes buttons.