Is it possible to run a c program without using main?If yes
HOW??
Answer Posted / rajiv kumar koiri
#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)
int begin()
{
printf("Hello");
}
| Is This Answer Correct ? | 16 Yes | 3 No |
Post New Answer View All Answers
What is chain pointer in c?
Can we use any name in place of argv and argc as command line arguments?
When reallocating memory if any other pointers point into the same piece of memory do you have to readjust these other pointers or do they get readjusted automatically?
What is return in c programming?
how to find binary of number?
why we wont use '&' sing in aceesing the string using scanf
Is there any possibility to create customized header file with c programming language?
What is I ++ in c programming?
Why is c faster?
Which of these functions is safer to use : fgets(), gets()? Why?
Is null a keyword in c?
Explain what is the difference between #include and #include 'file' ?
How can I split up a string into whitespace-separated fields?
Can the sizeof operator be used to tell the size of an array passed to a function?
What are structures and unions? State differencves between them.