#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
C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions
What is structure and union in c?
What are the types of c language?
What is openmp in c?
Describe the header file and its usage in c programming?
Is there a way to compare two structure variables?
How can I list all of the predefined identifiers?
How can I send mail from within a c program?
int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;
what is bit rate & baud rate? plz give wave forms
Describe static function with its usage?
Suggesting that there can be 62 seconds in a minute?
What are the functions to open and close file in c language?
What are different types of operators?
Is it possible to pass an entire structure to functions?