Computer Science, asked by tupur34, 8 months ago

what will be the output of the following code? int m= 2; int n= 15; for( int i = 1; i < 5; i++) m++; --n;​

Answers

Answered by bktbunu
1

int m= 2; int n= 15; for( int i = 1; i < 5; i++) m++; --n;

output: m=6, n=11

Similar questions