
How To Write A "C" Program Without A Main Function
Is it possible to do
that.Yes there can be a C program
without a main function.Here’s the
code of the program without a main
function… #include #define decode(s,t,u,m,p,e,d)
m##s##u##t
#define begin decode(a,n,i,m,a,t,e) int begin()
{
printf(” hello “);
} Does the above program run without
the main function? Yes, the above
program runs perfectly fine even
without a main function.But
how,whats...