fork download
  1. #include <stdio.h>
  2. #include <string.h>
  3. #define _CRT_SECURE_NO_WARNINGS
  4. char temp[1001][1001]={0};
  5. int main(){
  6. int M,N,T; scanf("%d %d %d ", &M, &N, &T);
  7. char arr[1001][1001];
  8. for(int i=0;i<M;i++){
  9. for(int j=0;j<N;j++){
  10. scanf("%s", &arr[i][j]);
  11. printf("%s", arr[i][j]);
  12. }
  13.  
  14. }
  15. }
Runtime error #stdin #stdout 0s 4400KB
stdin
2 5 3
l l H o e
r l W d o
1 3
2 5
2 4
stdout
Standard output is empty