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
Write a program to print factorial of given number using recursion?
What is declaration and definition in c?
What is floating point constants?
Is there any algorithm to search a string in link list in the minimum time?(please do not suggest the usual method of traversing the link list)
Do you know what are bitwise shift operators in c programming?
any limit on the number of functions that might be present in a C program a) max 35 functions b) max 50 functions c) no limit d) none of the above
What does a derived class inherit from a base class a) Only the Public members of the base class b) Only the Protected members of the base class c) Both the Public and the Protected members of the base class d) .c file
What is the meaning of && in c?
What are structural members?
Function which gives a pointer to a binary trees const an integer value at each code, return function of all the nodes in binary tree.?
When should you not use a type cast?
What is data structure in c language?
find the value of y y = 1.5x+3 for x<=2 y = 2x+5 for x>2
What is the use of pointers in C?
Explain how can I avoid the abort, retry, fail messages?