1).
void main ( ) { int i = i++, j = j++, k = k++; printf ( “ i = %d j = %d k = %d”, i, j, k ); }
2).
int main ( ) { int i = 7; for(i-- ;i-- ;i--) printf(“%d”, i); return 0; }
1) k = j + i
2)531
Need a fast expert's response?
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Comments
Leave a comment