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. int value[n][m];
  9.  
  10. for(int i=0; i<n; i++){
  11. for(int j=0; j<m; j++){
  12. scanf("%d", &array[i][j]);
  13. value[i][j] = array[i][j];
  14. }
  15. }
  16. printf("Output:\n");
  17. for(int i=0; i<n; i++){
  18. for(int j=0; j<m ; j++){
  19. printf("%d ", value[i][j]);
  20. }
  21. printf("\n");
  22. }
  23. }
  24.  
Success #stdin #stdout 0s 5288KB
stdin
3 3
10 20 30
40 50 60
70 80 90
stdout
Output:
10 20 30 
40 50 60 
70 80 90