Whether there can be main inside another main?If so how does
it work?
Answer Posted / shiva
main()
{
printf("main()");
}
| Is This Answer Correct ? | 39 Yes | 19 No |
Post New Answer View All Answers
How can my program discover the complete pathname to the executable from which it was invoked?
Why is c not oop?
How to get string length of given string in c?
Is there a way to jump out of a function or functions?
The file stdio.h, what does it contain?
Why main is used in c?
How to write a code for reverse of string without using string functions?
cavium networks written test pattern ..
What are control structures? What are the different types?
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
Explain 'bus error'?
a number whose only prime factors are 2,3,5, and 7 is call humble number,,write a program to find and display the nth element in this sequence.. sample input : 2,3,4,11,12,13, and 100.. sample output : the 2nd humble number is 2,the 3rd humble number is 3,the 4th humble number is ,the 11th humble number is 12, the 12th humble number is 14, the 13th humble number is 15, the 100th humble number is 450.
Which is better malloc or calloc?
how to write optimum code to divide a 50 digit number with a 25 digit number??
What is the maximum no. of arguments that can be given in a command line in C.?