Advertisement
Guest User

Untitled

a guest
Jan 29th, 2020
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. #include <i o s t re am>
  2. using namespace s t d ;
  3. int main ( void)
  4. {
  5. int a [ 5 ] = { 1 , 2 , 3 , 4 , 5 };
  6. int i , j , m;
  7. i = ++a [ 2 ] ;
  8. j = a [ 1]++;
  9. 2
  10. m = a [ i ++];
  11. c ou t << i << " , " << j << " , " ;
  12. c ou t << m << e n dl ;
  13. return 0 ;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement