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
Why ca not I do something like this?
If the size of int data type is two bytes, what is the range of signed int data type?
What is meant by int main ()?
What is function prototype in c with example?
What is the use of printf() and scanf() functions?
Explain continue keyword in c
What are the types of macro formats?
Write a program to generate a pulse width frequency of your choise,which can be variable by using the digital port of your processor
write a program to reverse a every alternetive words in a string in a place. EX: Input is "this is the line of text" Output should be "shit is eht line fo text" Please any one tell me code for that.
Explain how do you override a defined macro?
What is memcpy() function?
An integer that indentifies the position of a data item in a sequence of data items a) value b) number c) index d) all of the above
what is the c source code for the below output? 10 10 10 10 10 10 10 10 10 10 9 9 7 6 6 6 6 6 6 9 7 5 9 7 3 2 2 5 9 7 3 1 5 9 7 3 5 9 7 4 4 4 4 5 9 7 8 8 8 8 8 8 8 8 9
What is the difference between ++a and a++?
Are there namespaces in c?