sysy-data/functional/sy/08_const_array_defn.sy

5 lines
59 B
Plaintext
Raw Normal View History

2024-01-09 19:48:14 +08:00
const int a[5]={0,1,2,3,4};
int main(){
return a[4];
}