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 / ii yr information technology
466799
3200-2-3
| Is This Answer Correct ? | 29 Yes | 14 No |
Post New Answer View All Answers
When was c language developed?
What is function what are the types of function?
What is difference between && and & in c?
What are structural members?
in any language the sound structure of that language depends on its a) character set, input/output function, its control structures b) character set, library functions, input/output functions its control structures c) character set, library functions, control sturctures d) character set, operators, its control structures
The number of measuring units from an arbitarary starting point in a record,area,or control block to some other point a) recording pointer b) offset c) branching d) none
What is const and volatile in c?
Why clrscr is used in c?
What is "Duff's Device"?
Explain how can I pad a string to a known length?
What language is windows 1.0 written?
What are the parts of c program?
What is function prototype?
a formula,a series of steps,or well defined set of rules for solving a problem a) algorithem b) program c) erdiagram d) compiler
what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?