C Program without using the Main() Function
/*
* C Program Using a Macro that defines Main
*/
#include <stdio.h>
#define pseudo main
int pseudo(void)
{
printf("Hello World\n");
return 0;
}
Output
Hello World
