sysy/functional_c/sy/07_const_var_defn3.sy

6 lines
87 B
Plaintext
Raw Permalink Normal View History

2024-04-14 22:20:29 +08:00
//test const local var define
int main(){
const int a = 10, b = 5;
return b;
}