#include int main(void) { double a[10], b[10]; int i; for(i = 0; i < 10; i++) /* Initialization */ a[i] = i; b = a; /* Compiler error: incompatible types when assigning to type double[10] from type double * */ for(i = 0; i < 10; i++) printf("b[%d] = %f\n", i, b[i]); return 0; }