I read a C book, it says that, if we just can apply address operator to element of 2d array of integral types (e.g. short, int, long). For example, if type is float, then we must use a temp variable. Code Example:
int i, j;
int arr[4][4];
for (i = 0; i < 2; ++i)
for (j = 0; j < 2; ++j)
scanf("%d", &a[i][j]); /* OK because of int type */
But this is not OK:
int i, j;
float arr[4][4];
for (i = 0; i < 2; ++i)
for (j = 0; j < 2; ++j)
scanf("%f", &a[i][j]); /* NOT OK because of float type - not integral type */
We have to use temp variable:
int i, j;
float temp;
float arr[4][4];
for (i = 0; i < 2; ++i)
for (j = 0; j < 2; ++j) {
scanf("%f", &temp); /* OK */
a[i][j] = temp; /* then assign back to element of 2d array */
}
The author says the same probblem with struct having not integral fields.
typedef struct {
char name[20];
int id;
float grade;
} Student;
...
Student s;
float temp;
scanf("%d", &s.id); /* OK becuase of integral type */
/* scanf("%f", &s.grade); NOT OK because of float type */
scanf("%f", &temp); /* OK */
s.grade = temp; /* assign back */
The author just says in C, it is that but does not explain. This is strange, i have never heard of this before, as i test program on Visual Studio 6.0, Visual Studio 2010 (add new file with .c extension), it works normally without need to use temp variable
Is it a problem of history - old C style?
And is there this limitation in C++?

a[4][4]isn't declared; the arrayarr[4]4]is. – WhozCraig Jan 24 at 4:06