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
What is main () in c?
Explain the meaning of keyword 'extern' in a function declaration.
Explain how can a program be made to print the line number where an error occurs?
How are structure passing and returning implemented?
What is a structure and why it is used?
What are the storage classes in C?
Why is c called a structured programming language?
Explain enumerated types.
Why is structure padding done in c?
What is c standard library?
What is the use of sizeof () in c?
How do you do dynamic memory allocation in C applications?
What is break in c?
Difference between macros and inline functions? Can a function be forced as inline?
State two uses of pointers in C?