fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4.  
  5.  
  6. int main(){
  7. int i,j;
  8. int a,b;
  9. int **mat;
  10. scanf("%d %d",&a,&b);
  11. mat=(int*)malloc(sizeof(int)*a);
  12. for(int x=0;x<a;x++){
  13. mat[x]=(int**)malloc(sizeof(int*)*b);}
  14. for(int y=0;y<a;y++){
  15. for(int z=0;z<b;z++){
  16. mat[y][z]=y*a+z+1;
  17. }
  18. }
  19. for(i=0;i<a;i++){
  20. for(j=0;j<b;j++){
  21. printf("%d ",mat[i][j]);
  22. }
  23. printf("\n");
  24. }
  25.  
  26. free(mat);
  27.  
  28.  
  29. return 0;
  30. }
  31.  
Success #stdin #stdout 0s 5276KB
stdin
2 3
stdout
1 2 3 
3 4 5