Replies
Welcome, guest
Join CrazyEngineers to reply, ask questions, and participate in conversations.
CrazyEngineers powered by Jatra Community Platform
-
@abrakadabra • Mar 15, 2012
We had a similar thread for JAVA.Nick_SharmaCan you write a C program without main() ??
Check : #-Link-Snipped-#
It is quite possible to write a C program without main() if we know how to use preprocessor and macro. -
@neeraj-iAaNcG • Mar 15, 2012
Yes it is possible using macros.I wanted it to be a kind of quiz 😛 Sorry may be I posted in wrong section 😔 -
@abrakadabra • Mar 15, 2012
This is the right section. 👍Nick_SharmaYes it is possible using macros.I wanted it to be a kind of quiz 😛 Sorry may be I posted in wrong section 😔
Let us keep this open for responses. -
@neeraj-iAaNcG • Mar 16, 2012
This is actually the solution. Yes, we can write a program without main logically but it is not possible conceptually..
Here is the program:
#include<stdio.h>
#include<conio.h>
#define decode(a,u,d,i,b,l,e) i##a##d##u
#define START decode(a,n,i,m,a,t,e)
void START()
{
clrscr();
printf("Hey this is Nick waving hi from a program without main");
getch();
}