main()
{
int i = 10;
printf(" %d %d %d \n", ++i, i++, ++i);
}
Answer Posted / thaslima
11,10,11
| Is This Answer Correct ? | 6 Yes | 33 No |
Post New Answer View All Answers
What is meant by realloc()?
Why main is not a keyword in c?
What is n in c?
Is a pointer a kind of array?
Explain 'bit masking'?
i want to know the procedure of qualcomm for getting a job through offcampus
#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); }
What is the purpose of type declarations?
Given a valid 24 hour format time find the combination of the value and write a program ,do not hard the value and if any other inputs provided should work with the logic implemented Input: 11:30 Output: 13:10 Input: 18:25 Output: 21:58
What is difference between stdio h and conio h?
Which function in C can be used to append a string to another string?
Explain how can I write functions that take a variable number of arguments?
In a switch statement, explain what will happen if a break statement is omitted?
Differentiate between declaring a variable and defining a variable?
What is the use of bitwise operator?