SysYTestcases/function_2020/49_decl_in_defn.sy
ridethepig 13f3cb710a init
2023-05-16 00:56:56 +08:00

8 lines
79 B
Plaintext

int main () {
int a;
a = 12;
int t;
putint(a);
return 0;
}