#include #define N 500 #define K 10 int main(void) { int i; double tab1[N]; /* allocation of N doubles */ double tab2[N*K]; /* allocation of N*K doubles */ /* do something with tab1 and tab2 */ return 0; }