rustic-sysy/sysy_sets/06_const_var_defn2.sy

6 lines
83 B
Plaintext
Raw Permalink Normal View History

2024-08-27 18:13:31 +08:00
//test const gloal var define
const int a = 10, b = 5;
int main(){
return b;
}