Is it possible to initialize an array using pointer notation from another array?
To clarify, if you can use sizeof(*table) to return the size of a row, why does it not work to assign a row of a specific table? Is there some way to use double table2[3] = *table; to assign only the first row of table to table2.
#include <stdio.h>
int main()
{
double table[2][3] = {{1.1, 1.2, 1.3},{2.1, 2.2, 2.3}};
double table2[2][3]=table;
// initial variant was double table2[3]=*table;
}