sysy/functional_c/sy/07_const_var_defn3.sy

6 lines
105 B
Plaintext
Raw Normal View History

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