What is the output of the program given below
#include<stdio.h>
main()
{
char i=0;
for(;i>=0;i++) ;
printf("%d\n",i);
}
Answer Posted / sh college,thevara
-128
| Is This Answer Correct ? | 31 Yes | 8 No |
Post New Answer View All Answers
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
Why c is faster than c++?
What are structures and unions? State differencves between them.
What is I ++ in c programming?
What are the types of assignment statements?
What is c language and why we use it?
What is character set?
How can you allocate arrays or structures bigger than 64K?
Differentiate between the expression “++a” and “a++”?
What is the significance of scope resolution operator?
What is #include stdlib h?
What's the total generic pointer type?
What is assert and when would I use it?
What is the difference between procedural and declarative language?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.