what is the output of the below code?
main( )
{
printf ( "\nOnly stupids use C?" ) ;
display( ) ;
}
display( )
{
printf ( "\nFools too use C!" ) ;
main( ) ;
}
Answer Posted / vijay gupta
it well goes in indefinite loop
| Is This Answer Correct ? | 30 Yes | 2 No |
Post New Answer View All Answers
An arrangement of information in memory in such a way that it can be easily accessed and processed by a programming language a) string b) data structure c) pointers d) array
What are runtime error?
What is signed and unsigned?
Is c call by value?
What are the types of bitwise operator?
When should structures be passed by values or by references?
What is malloc return c?
Write a program to swap two numbers without using a temporary variable?
To print the pattern 1 2 3 4 5 10 17 18 19 6 15 24 25 20 7 14 23 22 21 8 13 12 11 10 9
What is the size of enum in bytes?
What is an array? What the different types of arrays in c?
Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
Write the Program to reverse a string using pointers.
What is the use of header files?
what do you mean by inline function in C?