1 2 3 4 5 6 7 8 9
struct a {int a,b;}; const static struct a a[1]={{1,2}}; struct a b,c; void t(void) { int idx = 0; b=a[idx]; c=a[idx]; }