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

6 lines
78 B
Plaintext
Raw Normal View History

2024-04-14 22:20:29 +08:00
#include "sylib.h"
const int a[5]={0,1,2,3,4};
int main(){
return a[4];
}