0
Can you give me example of double array program
3 Answers
+ 2
double dat[6][6];
for(int i=0;i<6;i++){
for(int j=0;j<6;j++){
dat[i][j]=0,21*i;
}
}
for(int i=0;i<6;i++){
for(int j=0;j<6;j++){
cout<<dat[i][j]<<endl;
}
}
0
a matrix will be best example for double array.
int mat[6][6] : it will declare a matrix of 6x6 size.
is this what you are looking for?
0
double data type array or double array program!