Can i use Two or More Main Funtion in any C program.?
Answer Posted / vadivelt
Main fuction can be called from a main function of same
prototype(recursive call). But multiple definition of a
main function is not possible.
| Is This Answer Correct ? | 12 Yes | 1 No |
Post New Answer View All Answers
how we can make 3d venturing graphics on outer interface
What are the advantages of external class?
What does sizeof return c?
Why is c so popular?
what is recursion in C
How can I pad a string to a known length?
What is the concatenation operator?
How is pointer initialized in c?
How many identifiers are there in c?
What are keywords in c with examples?
#include show(int t,va_list ptr1) { int a,x,i; a=va_arg(ptr1,int) printf(" %d",a) } display(char) { int x; listptr; va_star(otr,s); n=va_arg(ptr,int); show(x,ptr); } main() { display("hello",4,12,13,14,44); }
What is the advantage of c?
What are global variables?
What are the key features in c programming language?
Write a program to swap two numbers without using third variable?