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
Explain why c is faster than c++?
Simplify the program segment if X = B then C ← true else C ← false
Explain void pointer?
Do you know what are bitwise shift operators in c programming?
Hi can anyone tell what is a start up code?
Explain how can I manipulate strings of multibyte characters?
What is the correct code to have following output in c using nested for loop?
What is pointer and structure in c?
what is a function method?give example?
How many types of operators are there in c?
What is p in text message?
What is a good data structure to use for storing lines of text?
Does * p ++ increment p or what it points to?
What is the difference between malloc() and calloc()?
write a c program to print the next of a particular no without using the arithmetic operator or looping statements?