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 / pedda
4,5,4,4,5,4
3,3,2,3,2,2
| Is This Answer Correct ? | 2 Yes | 10 No |
Post New Answer View All Answers
What is a nested loop?
Differentiate between ordinary variable and pointer in c.
Define macros.
The difference between printf and fprintf is ?
What language is lisp written in?
Define VARIABLE?
how to print the character with maximum occurence and print that number of occurence too in a string given ?
how we can make 3d venturing graphics on outer interface
What is the difference between the local variable and global variable in c?
What is graph in c?
Write a program on swapping (100, 50)
Does free set pointer to null?
Why calloc is better than malloc?
Why do we need a structure?
How many types of operators are there in c?