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
Is that possible to store 32768 in an int data type variable?
What's the difference between constant char *p and char * constant p?
How do you define structure?
Can 'this' pointer by used in the constructor?
What is break in c?
What is a MAC Address?
What is auto keyword in c?
What does typeof return in c?
What is a rvalue?
Explain how can I write functions that take a variable number of arguments?
What is selection sort in c?
What is the condition that is applied with ?: Operator?
In c language can we compile a program without main() function?
All technical questions
Write a code to determine the total number of stops an elevator would take to serve N number of people.