int i=6;
i=i+i+++i;
printf("%d",i);
find output
Answers
Answered by
0
Answer:
int i=6; i = 6
i=i+i+++i; i = 6 + 7 + 7
printf("%d",i);
Output : 20
**Please follow me and mark this ans as Branliest answer.Thank you!
Answered by
0
i=6;
i=i+i+++i; // 7+7+7
printf("%",i); // output:- 21
Similar questions