Tuesday, 19 April 2011

C programme without main() !!?? Is it possible!!?? One who thinks "NO" just try the posted programme..


#include<stdio.h>
#define decode(s,t,u,m,p,e,d) m##s##u##t
#define begin decode(a,n,i,m,a,t,e)
begin()
{
       printf(" without main \n");
       system("PAUSE");            // is required in Dev C++ compiler
}
Ha ha... try and think how its possible.