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's the return value of malloc()
Can a file other than a .h file be included with #include?
How can I swap two values without using a temporary?
What are dangling pointers in c?
Why c is procedure oriented?
coding for Fibonacci.?
What is the output for the program given below typedef enum grade{GOOD,BAD,WORST,}BAD; main() { BAD g1; g1=1; printf("%d",g1); }
What is C language ?
What is the difference function call by value & function call by reference?
Explain how do you print only part of a string?
Explain what are the different data types in c?
What will be your course of action for a push operation?