what is the Output?
int a=4 b=3;
printf("%d%d%d%d%d%d",a++,++a,a++,a++,++a,a++);
printf("%d%d%d%d%d%d",b--,b--,--b,b--,--b,--b);
Answer Posted / dumitru
in Open Suse the result is:
9 10 7 6 10 4
-2 -1 -3 1 -3 -3
| Is This Answer Correct ? | 2 Yes | 4 No |
Post New Answer View All Answers
What is an lvalue in c?
c language supports bitwise operations, why a) 'c' language is system oriented b) 'c' language is problem oriented c) 'c' language is middle level language d) all the above
Explain how do you generate random numbers in c?
Which header file is essential for using strcmp function?
Do you know the use of fflush() function?
What is atoi and atof in c?
What is the use of getchar functions?
What is difference between structure and union in c programming?
What does a derived class inherit from a base class a) Only the Public members of the base class b) Only the Protected members of the base class c) Both the Public and the Protected members of the base class d) .c file
write a program to reverse a every alternetive words in a string in a place. EX: Input is "this is the line of text" Output should be "shit is eht line fo text" Please any one tell me code for that.
Can you explain what keyboard debouncing is, and where and why we us it? please give some examples
What is meant by operator precedence?
What are local static variables? How can you use them?
There seem to be a few missing operators ..
Why is c known as a mother language?