08_const_array_defn.sy 59 Bytes
Newer Older
龚平's avatar
init  
龚平 committed
1 2 3 4 5
const int a[5]={0,1,2,3,4};

int main(){
    return a[4];
}