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
How can you determine the maximum value that a numeric variable can hold?
What does %d do in c?
What are the uses of a pointer?
What is uint8 in c?
What is a substring in c?
What are structural members?
What is the use of putchar function?
Is it fine to write void main () or main () in c?
What does do in c?
Explain the use of 'auto' keyword
How do you define a string?
What is the Purpose of 'extern' keyword in a function declaration?
What does c mean before a date?
shorting algorithmS
Does c have circular shift operators?