// test-expression-variables.c int main(int argc, int argv) { int x = 10; int y = 20; int z = x + y; return z; }