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 the difference between %d and %i?
Write a program to print numbers from 1 to 100 without using loop in c?
the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none
what are the facialities provided by you after the selection of the student.
What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?
What does a function declared as pascal do differently?
I just typed in this program, and it is acting strangely. Can you see anything wrong with it?
what is the diffrenet bettwen HTTP and internet protocol
What is data structure in c programming?
What are integer variable, floating-point variable and character variable?
What does & mean in scanf?
how to create duplicate link list using C???
Explain how can I read and write comma-delimited text?
How do you declare a variable that will hold string values?
A variable that is defined in a specified portion of a program but can be used throughout the program a) global variable b) local variable c) character d) none