#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
When should a type cast not be used?
Is c is a high level language?
What are local static variables?
what type of questions arrive in interview over c programming?
What are register variables in c?
How old is c programming language?
Explain what are multidimensional arrays?
Which one to choose from 'initialization lists' or 'assignment', for the use in the constructor?
Can you please explain the difference between malloc() and calloc() function?
Input is "rama loves rajesh and rajesh Loves rama also and rajesh wear gloves and bloves" To print output is count the numbers of times repeted the word love without case sensitive.
What is a pointer in c?
What is line in c preprocessor?
What is the function of this pointer?
Which one would you prefer - a macro or a function?
How can I list all of the predefined identifiers?