fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int main(){
  5. int i,j,k;
  6. int a,b;
  7. int **mat;
  8. scanf("%d %d",&a,&b);
  9.  
  10. mat = (int**)malloc(sizeof(int*)*a);
  11. if(mat == NULL){
  12. printf("error");
  13. return 0;
  14. }
  15. for (k=0;k<a;k++){
  16. mat[k] = (int*)malloc(sizeof(int*)*b);
  17. }
  18.  
  19. for(i=0;i<a;i++){
  20. for(j=0;j<b;j++){
  21. mat[i][j] = i*b+(j+1);
  22. }
  23. }
  24.  
  25. for(i=0;i<a;i++){
  26. for(j=0;j<b;j++){
  27. printf("%d ",mat[i][j]);
  28. }
  29. printf("\n");
  30. }
  31.  
  32. free(mat);
  33.  
  34.  
  35. return 0;
  36. }
  37.  
Success #stdin #stdout 0s 5280KB
stdin
6 8
stdout
1 2 3 4 5 6 7 8 
9 10 11 12 13 14 15 16 
17 18 19 20 21 22 23 24 
25 26 27 28 29 30 31 32 
33 34 35 36 37 38 39 40 
41 42 43 44 45 46 47 48