Remember I am talking about multidimensional STRUCTURES and not multidimensional arrays, STRUCTURE VARIABLES, etc. If yes, then what is the syntax? The example will help you clear things out:
struct arr[3]{
int a, float b,
int c, float d,
int e, float f;
}
I just used the syntax that are used for multidimensional arrays with some additional work (like semicolon after the last variable) which is not used as a syntax for multidimensional arrays. AND Don't think this as an actual syntax, here I am just trying to let you understand my question. A multidimensional structure which has two types of data in one row separated by columns. A one which can have different type of data in each rows.