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
What do the functions atoi(), itoa() and gcvt() do?
What is wrong with this program statement? void = 10;
What are identifiers and keywords in c?
Explain what is the general form of a c program?
What is adt in c programming?
What are the advantages of using Unions?
Is that possible to add pointers to each other?
Hello. How to write a C program to check and display president party like if i type in the console "biden" and hit enter the output shoud be : "biden is democrat" and if i type "trump" and hit enter the output shoud be: "trump is republican"
What is wild pointer in c?
Why do we need volatile in c?
Explain how can I manipulate strings of multibyte characters?
What is structure padding and packing in c?
What are pointers? What are different types of pointers?
What happens if header file is included twice?
Explain the difference between ++u and u++?