#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 static function in c?

636


Do character constants represent numerical values?

844


What is array of structure in c?

598


What are the different properties of variable number of arguments?

669


What is the difference between NULL and NUL?

729






Explain how do you determine a file’s attributes?

594


Place the #include statement must be written in the program?

573


What is a macro in c preprocessor?

632


Explain zero based addressing.

610


What is a pointer in c plus plus?

698


What is use of bit field?

774


Why do we use static in c?

634


What is a sequential access file?

648


Write the control statements in C language

651


What is the benefit of using const for declaring constants?

590