Computer Science, asked by vishavgupta, 1 year ago

int i=6;
i=i+i+++i;
printf("%d",i);


find output​

Answers

Answered by srajfaroquee
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 Anonymous
0

i=6;

i=i+i+++i; // 7+7+7

printf("%",i); // output:- 21

Similar questions