rustic-sysy/sysy_sets/08_const_array_defn.sy

5 lines
59 B
Plaintext
Executable File

const int a[5]={0,1,2,3,4};
int main(){
return a[4];
}