main()
{
int i=5;
printf("%d%d%d%d",i++,i--,i);
}
Answer Posted / pranu
655
| Is This Answer Correct ? | 2 Yes | 4 No |
Post New Answer View All Answers
Differentiate between the expression “++a” and “a++”?
Is it possible to initialize a variable at the time it was declared?
How can I handle floating-point exceptions gracefully?
What does double pointer mean in c?
a way in which a pointer stores the address of a pointer which stores the value of the target value a) reference b) allocation c) multiple indirection d) none
How many data structures are there in c?
Why is structure important for a child?
how can i write a program that prints out a box such that whenever i press any key8(coordinate number) on the keyboard, the box moves.
Do pointers take up memory?
How do I swap bytes?
How can I implement sets or arrays of bits?
Where register variables are stored in c?
Which driver is a pure java driver
Write a program to print factorial of given number using recursion?
Explain what are binary trees?