void main()
{
static int i = 5;
if(--i)
{
main();
printf("%d
",i);
}
}
what would be output of the above program and justify your
answer?
}
Answer Posted / biren
we can't call a main function with in main.
| Is This Answer Correct ? | 7 Yes | 32 No |
Post New Answer View All Answers
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
How we can insert comments in a c program?
What are the back slash character constants or escape sequence charactersavailable in c?
Explain the difference between #include "..." And #include <...> In c?
Why can’t we compare structures?
Why dont c comments nest?
Why & is used in c?
What are near, far and huge pointers?
How can a program be made to print the name of a source file where an error occurs?
What is d scanf?
can we implement multi-threads in c.
a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above
Q.1 write aprogram to stack using linklist o insert 40 items? Q.2 write a program to implement circular queue with help of linklist?
How do I read the arrow keys? What about function keys?
Should I learn data structures in c or python?