9 lines
100 B
C
9 lines
100 B
C
static int mem = 56;
|
|
|
|
int main() {
|
|
int a = 42;
|
|
int b = 5;
|
|
mem = mem + a*b + 3;
|
|
|
|
return 0;
|
|
}
|