main()
{
int i=5;
printf("%d%d%d%d",i++,i--,i);
}
Answer Posted / sunil5a2
4 5 5
printf excutes form lefthand side onwords..
| Is This Answer Correct ? | 0 Yes | 5 No |
Post New Answer View All Answers
Explain enumerated types in c language?
How will you divide two numbers in a MACRO?
What is #include conio h?
In C programming, what command or code can be used to determine if a number of odd or even?
Explain what is the purpose of "extern" keyword in a function declaration?
What is the difference between typedef struct and struct?
What is your stream meaning?
How to find a missed value, if you want to store 100 values in a 99 sized array?
What's the best way of making my program efficient?
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
Explain the bubble sort algorithm.
What is function definition in c?
How do you list files in a directory?
Is c# a good language?
What are the types of i/o functions?