sysy/functional_c/sy/13_sub2.sy

8 lines
78 B
Plaintext
Raw Permalink Normal View History

2024-04-14 22:20:29 +08:00
//test sub
#define a 10
int main(){
int b;
b = 2;
return b - a;
}