菜鸟教程C数组
数组声明:
double a[10];
初始化:
double a[5]={1000.0, 2.0, 3.4, 7.0, 50.0};
double a[]={1000.0, 2.0, 3.4, 7.0, 50.0};
为某个元素赋值:a[4] = 50.0;