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 can a program be made to print the name of a source file where an error occurs?
What is echo in c programming?
How do I create a directory? How do I remove a directory (and its contents)?
How can you avoid including a header more than once?
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25
What does the file stdio.h contain?
What is the meaning of typedef struct in c?
What are enums in c?
Tell me is null always defined as 0(zero)?
What is 'bus error'?
What is volatile keyword in c?
What are the disadvantages of c language?
what do you mean by inline function in C?
How arrays can be passed to a user defined function
Why pointers are used?