Is main() is used in the program,,see below example?
void main()
{
int i;
for(i=0;i<10;i++)
main();
}
Then what is the output of the program?
Answer Posted / parvathi
it cgoes into infinite loop
| Is This Answer Correct ? | 11 Yes | 1 No |
Post New Answer View All Answers
Why c language is called c?
Do you know null pointer?
in programming languages a statement or part of a statement that specifies several different execution sequences a) constructs b) distructs c) executes d) none
Explain what is the concatenation operator?
Why flag is used in c?
What are the advantages and disadvantages of c language?
What is floating point constants?
Where static variables are stored in memory in c?
What is the process to generate random numbers in c programming language?
Is that possible to add pointers to each other?
Is it possible to execute code even after the program exits the main() function?
What are the different types of errors?
What is console in c language?
Explain the difference between ++u and u++?
Can we declare variable anywhere in c?