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
How do we declare variables in c?
How can I swap two values without using a temporary?
what are the advantages of a macro over a function?
How can I read in an object file and jump to locations in it?
write a programe to accept any two number and check the following condition using goto state ment.if a>b,print a & find whether it is even or odd and then print.and a
What is string constants?
A routine usually part of the operation system that loads a program into memory prior to execution a) linker b) loader c) preprocessor d) compiler
What is the deal on sprintf_s return value?
What is wrong with this initialization?
What is the difference between functions getch() and getche()?
What is the use of bit field?
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
how many errors in c explain deply
What is the use of typedef in c?
Explain what is the benefit of using const for declaring constants?