sysy/functional_c/sy/07_const_var_defn3.sy

6 lines
87 B
Plaintext

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