main()
{
int i=5;
printf("%d%d%d%d",i++,i--,i);
}
Answer Posted / vignesh1988i
some garbage value , 4,5,5...
why in this o/p garbage value is because only 3 parameters
are passed but we have assigned 4 control strings , where
one control string is useless, so for that compiler will
print garbage value....
| Is This Answer Correct ? | 2 Yes | 4 No |
Post New Answer View All Answers
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.
What is the size of a union variable?
What would be an example of a structure analogous to structure c?
Explain can the sizeof operator be used to tell the size of an array passed to a function?
Difference between MAC vs. IP Addressing
How do I round numbers?
How are portions of a program disabled in demo versions?
What are the types of arrays in c?
Explain argument and its types.
Why c is called free form language?
What is the difference between local variable and global variable in c?
What does do in c?
Is that possible to add pointers to each other?
What are the advantages of c language?
What is the use of void pointer and null pointer in c language?