main()
{
int i=5;
printf("%d%d%d%d",i++,i--,i);
}
Answer Posted / vara
4 5 5 and garbagevalue
| Is This Answer Correct ? | 12 Yes | 4 No |
Post New Answer View All Answers
Explain how can I pad a string to a known length?
Why do we need a structure?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it(should not use big integers and exponential functions)
What's the best way of making my program efficient?
Why main is used in c?
Is c is a low level language?
What does the error 'Null Pointer Assignment' mean and what causes this error?
Explain do array subscripts always start with zero?
Explain the array representation of a binary tree in C.
What is equivalent to ++i+++j?
What is the difference between array and structure in c?
Explain what is #line used for?
In C language, a variable name cannot contain?
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
How many levels of indirection in pointers can you have in a single declaration?