what is the output of the below code?
main( )
{
printf ( "\nOnly stupids use C?" ) ;
display( ) ;
}
display( )
{
printf ( "\nFools too use C!" ) ;
main( ) ;
}
Answers were Sorted based on User's Feedback
Answer / shrikantauti
such loops are known as infinite loop or odd loop.
| Is This Answer Correct ? | 6 Yes | 2 No |
Answer / sindhu
it execute infinite loop as
only stupids use c
fools too use c
these two statements infinite times on output screen
| Is This Answer Correct ? | 2 Yes | 0 No |
What is the use of bitwise operator?
Meaning of () in c
What is a const pointer, and how does it differ from a pointer to a const?
True or false: If you continuously increment a variable, it will become negative? 1) True 2) False 3) It depends on the variable type
dennis ritchie invented C language in AT&T bell laboratory what is the extension of AT&T?
Explain the red-black trees?
why effort estimation is important?
What does c value mean?
What does static variable mean in c?
Explain the concept and use of type void.
who will call your main function in c under linux?
Why & is used in c?