8 lines
No EOL
120 B
C
8 lines
No EOL
120 B
C
// test-expression-variables.c
|
|
int main(int argc, int argv)
|
|
{
|
|
int x = 10;
|
|
int y = 20;
|
|
int z = x + y;
|
|
return z;
|
|
} |