Hello i have to create a 3d array and put integers float and chars in the array but i have no clue how to start all i kknow is that i have to used a struct/class could someone give me idea how to do it please
thanks in advance
This is a discussion on 3d array within the C++ Programming forums, part of the General Programming Boards category; Hello i have to create a 3d array and put integers float and chars in the array but i have ...
Hello i have to create a 3d array and put integers float and chars in the array but i have no clue how to start all i kknow is that i have to used a struct/class could someone give me idea how to do it please
thanks in advance
struct
{
int a;
float b;
char c;
}MyStruct[SIZEX][SIZEY][SIZEZ];
zen