sysy-data/functional/sy/07_const_var_defn3.sy

5 lines
86 B
Plaintext

//test const local var define
int main(){
const int a = 10, b = 5;
return b;
}