show/hide this revision's text 2 added 2 characters in body; edited title

How do I best handle dynamic multi-dimensional Arrays c/c++arrays in C/C++?

What is the accepted/most commonly used way to manipulate dynamic(all dynamic (with all dimensions not known until runtime) multi-dimensional arrays in C and/or C++.

what

I'm trying to find out is the cleanest way to do accomplish what this java Java code does:

public static void main(String[] args){
 Scanner sc=new Scanner(System.in);
 int rows=sc.nextInt();
 int cols=sc.nextInt();
 int[][] data=new int[rows][cols];
 manipulate(data);
}

public static void manipulate(int[][] data){
   for(int i=0;i<data.length;i++)
   for(int j=0;j<data[0].length.j++){
         System.out.print(data[i][j]);       
   }    
}

(reads from std_in just to clarify that dimensions aren't known until runtime).

show/hide this revision's text 1

dynamic multi-dimensional Arrays c/c++

What is the accepted/most commonly used way to manipulate dynamic(all dimensions not known until runtime) multi-dimensional arrays in C and/or C++.

what I'm trying to find out is the cleanest way to do what this java code does:

public static void main(String[] args){
 Scanner sc=new Scanner(System.in);
 int rows=sc.nextInt();
 int cols=sc.nextInt();
 int[][] data=new int[rows][cols];
 manipulate(data);
}

public static void manipulate(int[][] data){
   for(int i=0;i<data.length;i++)
   for(int j=0;j<data[0].length.j++){
         System.out.print(data[i][j]);       
   }    
}

(reads from std_in just to clarify that dimensions aren't known until runtime).