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 the difference between union and structure in c?
What is %lu in c?
Is c a great language, or what?
What are the different types of data structures in c?
Under what circumstances does a name clash occur?
What is header file in c?
Write a program for Overriding.
1) There is a singing competition for children going to be conducted at a local club. Parents have been asked to arrive at least an hour before and register their children’s names with the Program Manager. Whenever a participant registers, the Program Manager has to position the name of the person in a list in alphabet order. Write a program to help the Program Manager do this by placing the name in the right place each time the Program Manger enters a name. The Logic should be written in Data Structures?
What does the function toupper() do?
What is s in c?
How many loops are there in c?
What is default value of global variable in c?
What does == mean in texting?
FORMATTED INPUT/OUTPUT functions are a) scanf() and printf() b) gets() and puts() c) getchar() and putchar() d) all the above
How does sizeof know array size?