#include <iostream>
using namespace std;

void test(const float *x){
 cout<<x[0]<< " "<<x[1]<<endl;
}

int main(){
float **x=new float*[3];
 for(int i=0;i<3;i++){
  x[i]=new float[2];//Anlegen des 3*2Arrays
 }
x[0][0]=1;x[0][1]=2;//manuelles Füllen
x[1][0]=4;x[1][1]=3;
x[2][0]=5;x[2][1]=6;
 
test(x[0]);
}