what is the output of the below code?
main( )
{
printf ( "\nOnly stupids use C?" ) ;
display( ) ;
}
display( )
{
printf ( "\nFools too use C!" ) ;
main( ) ;
}
Answer Posted / shrikantauti
such loops are known as infinite loop or odd loop.
| Is This Answer Correct ? | 6 Yes | 2 No |
Post New Answer View All Answers
What is #line used for?
What’s a signal? Explain what do I use signals for?
Why is c platform dependent?
Explain the process of converting a Tree into a Binary Tree.
What is define directive?
What is difference between structure and union with example?
What is signed and unsigned?
What are the usage of pointer in c?
#include show(int t,va_list ptr1) { int a,x,i; a=va_arg(ptr1,int) printf(" %d",a) } display(char) { int x; listptr; va_star(otr,s); n=va_arg(ptr,int); show(x,ptr); } main() { display("hello",4,12,13,14,44); }
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
Describe the header file and its usage in c programming?
How can I use a preprocessorif expression to ?
How can I do graphics in c?
When can a far pointer be used?
What is #include stdio h and #include conio h?