Whether there can be main inside another main?If so how does
it work?
Answer Posted / qq
int main()
{ /*main();*/
printf("Thant's it");
}
| Is This Answer Correct ? | 3 Yes | 6 No |
Post New Answer View All Answers
What is difference between union and structure in c?
Can a pointer be null?
Where we use clrscr in c?
how do you execute a c program in unix.
Which control loop is recommended if you have to execute set of statements for fixed number of times?
C program to find all possible outcomes of a dice?
Calculate the weighted average of a list of n numbers using the formula xavg = f1x1+f2x2+ ….+ fnxn where the f’s are fractional weighting factors, i.e., 0<=fi<1, and f1+f2+….+fn = 1
What is array in C
What is pre-emptive data structure and explain it with example?
What is a void * in c?
What is meant by initialization and how we initialize a variable?
What does it mean when the linker says that _end is undefined?
What is the difference between the local variable and global variable in c?
What is pointer in c?
Is struct oop?