Answer Posted / vinay
if they are used stand alone they are same ....
both increment the value of operand by 1
if they used in an expression then they will perform same
as mentioned in above answers...
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
Explain pointers in c programming?
What are compound statements?
What is %lu in c?
In a switch statement, explain what will happen if a break statement is omitted?
Why is struct padding needed?
How do you generate random numbers in C?
about c language
What does calloc stand for?
What is a volatile keyword in c?
#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); }
Explain the difference between malloc() and calloc() function?
What are header files in c?
find the sum of two matrices and WAP for it.
Is it better to bitshift a value than to multiply by 2?
What are multidimensional arrays?