7 lines
79 B
Plaintext
7 lines
79 B
Plaintext
//test global var define
|
|
int a = 3;
|
|
int b = 5;
|
|
|
|
int main(){
|
|
return a + b;
|
|
} |