#include<stdio.h>
int fun();
int i;
int main()
{
while(i)
{
fun();
main();
}
printf("hello \n");
return 0;
}
int fun()
{
printf("hi");
}
answer is hello.how??wat is tat while(i) mean?

Answer Posted / tanveer ahmed abbasi

hi hello

Is This Answer Correct ?    0 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is include directive in c?

635


how do you programme Carrier Sense Multiple Access

1510


which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +

1171


How can I split up a string into whitespace-separated fields?

562


Can we assign string to char pointer?

578






Is c dynamically typed?

661


What are the application of c?

637


Explain the use of keyword 'register' with respect to variables.

585


What is actual argument?

582


What are run-time errors?

592


What are keywords c?

594


What are header files? What are their uses?

630


How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same

645


Is linux written in c?

594


How can I list all of the predefined identifiers?

570