for(i=1;i>0;i++);
printf("i=%d",i);
what will be the answer????
Answer Posted / rajesh jat
i is a signed integer
it will print only and only -32768
//KEEP IT DIRTY
| Is This Answer Correct ? | 16 Yes | 3 No |
Post New Answer View All Answers
What is a MAC Address?
What is identifiers in c with examples?
When is a “switch” statement preferable over an “if” statement?
What are extern variables in c?
Is c high or low level?
What is static volatile in c?
What is auto keyword in c?
How many keywords are there in c?
Why is c used in embedded systems?
What are register variables? What are the advantage of using register variables?
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
What is a pointer in c?
Explain how many levels deep can include files be nested?
What is #include stdlib h?
Explain is it valid to address one element beyond the end of an array?