What is the output of the program given below
#include<stdio.h>
main()
{
char i=0;
for(;i>=0;i++) ;
printf("%d\n",i);
}
Answers were Sorted based on User's Feedback
Answer / sakthi
the function should not return any value.
or
-113
| Is This Answer Correct ? | 1 Yes | 3 No |
Answer / tasneemuddin
It will print no from 0 to 32767.
Like :
0
1
2
3
.
.
.
.
32767
| Is This Answer Correct ? | 3 Yes | 6 No |
Answer / ananth
The loop never gets terminated as it runs infinite. So the
printf statement will not trigger & no o/p is produced.
| Is This Answer Correct ? | 11 Yes | 19 No |
Explain Function Pointer?
What is structure of c program?
Should I learn c before c++?
How do we declare variables in c?
How can I make sure that my program is the only one accessing a file?
What is the difference between union and structure in c?
in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?
What is meant by inheritance?
What do you know about the use of bit field?
a formula,a series of steps,or well defined set of rules for solving a problem a) algorithem b) program c) erdiagram d) compiler
every function has return the value?
Explain b+ tree?