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 / vinod kumar
in fedora it is giving
91076104
-2-1-31-3-3
but dont know how
| Is This Answer Correct ? | 0 Yes | 5 No |
Post New Answer View All Answers
What is "Hungarian Notation"?
Write a program of advanced Fibonacci series.
What is a substring in c?
How are structure passing and returning implemented?
When is a “switch” statement preferable over an “if” statement?
Does c have function or method?
Explain what is a pragma?
The difference between printf and fprintf is ?
Can one function call another?
When is the “void” keyword used in a function?
Why c is called a middle level language?
An organised method of depicting the use of an area of computer memory used to signify the uses for different parts of the memory a) swap b) extended memory c) memory map d) all of the above
What are the types of bitwise operator?
What is the heap?
Q.1 write a program to create binary tree 1 to 16 numbers? Q.2 write a program to creat a binary search tree for the member that is given by user?