Answer Posted / shani jaiswal
main()
{
static int i=0;
printf("%d",i);
i++;
main();
return 0;
}
| Is This Answer Correct ? | 10 Yes | 0 No |
Post New Answer View All Answers
Is c a great language, or what?
c programs are converted into machine language with the help of a) an interpreter b) a compiler c) an operatinf system d) none of the above
What is double pointer?
c program to compute AREA under integral
What are the three constants used in c?
Explain enumerated types in c language?
What is strcmp in c?
How is a null pointer different from a dangling pointer?
Is there a way to compare two structure variables?
What is an auto keyword in c?
difference between object file and executable file
What are compound statements?
What does node * mean?
How can I sort more data than will fit in memory?
Why we not create function inside function.