fork download
  1. #include<stdio.h>
  2.  
  3. int main()
  4. {
  5. int n,m;
  6. scanf("%d %d", &n, &m);
  7. int array[n][m];
  8.  
  9. for(int i=0; i<n; i++){
  10. for(int j=0; j<m; j++){
  11. scanf("%d", &array[i][j]);
  12. }
  13. }
  14. printf("Output:\n");
  15. for(int i=0; i<n; i++){
  16. for(int j=m-1; j >= 0; j--){
  17. printf("%d ", array[i][j]);
  18. }
  19. printf("\n");
  20. }
  21. }
  22.  
  23.  
Success #stdin #stdout 0s 5284KB
stdin
2 3
4 3 2
1 3 5
stdout
Output:
2 3 4 
5 3 1