void main()
{
int i=5;
printf("%d",i++ + ++i);
}
Answer Posted / nikki
its 12..
from right to left since printf executes from right to left for processing
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
difference between object file and executable file
How do I copy files?
How can I read data from data files with particular formats?
What is ponter?
c language supports bitwise operations, why a) 'c' language is system oriented b) 'c' language is problem oriented c) 'c' language is middle level language d) all the above
Why c is called procedure oriented language?
What is string length in c?
What is hashing in c?
Can we declare function inside main?
What is character set?
Explain what are the __date__ and __time__ preprocessor commands?
how to write a c program to print list of fruits in alpabetical order?
How to write a code for reverse of string without using string functions?
What is the meaning of ?
Explain what standard functions are available to manipulate strings?