void main()
{
int i=5;
printf("%d",i++ + ++i);
}
Answer Posted / veeraselvi.g
ans:12
explan:i++ means increment for 6 bt print will be 5;
other i++ for 6 to increment for 7
so ans is 12
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is auto keyword in c?
Do pointers take up memory?
What is queue in c?
Explain can static variables be declared in a header file?
What does struct node * mean?
Explain output of printf("Hello World"-'A'+'B'); ?
What is C language ?
What is assignment operator?
When should you not use a type cast?
What is #ifdef ? What is its application?
Why can arithmetic operations not be performed on void pointers?
What is the importance of c in your views?
Explain how can a program be made to print the line number where an error occurs?
Write a program to swap two numbers without using third variable?
What does the c in ctime mean?