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. }
  15. for(int y=0;y<a;y++){
  16. for(int z=0;z<b;z++){
  17. mat[y][z]=y*b+z+1;
  18. }
  19. }
  20. for(i=0;i<a;i++){
  21. for(j=0;j<b;j++){
  22. printf("%d ",mat[i][j]);
  23. }
  24. printf("\n");
  25. }
  26.  
  27. free(mat);
  28.  
  29.  
  30. return 0;
  31. }
  32.  
Success #stdin #stdout 0s 5284KB
stdin
2 3
stdout
1 2 3 
4 5 6