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

