#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
Explain the use of function toupper() with and example code?
What is identifiers in c with examples?
What are file streams?
What is a function in c?
Is there any possibility to create customized header file with c programming language?
List some applications of c programming language?
How would you rename a function in C?
#include
How do I use strcmp?
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
FILE PROGRAMMING
Explain zero based addressing.
How many types of functions are there in c?
how is the examination pattern?
What are integer variable, floating-point variable and character variable?