// test-local-vars.c int main(int argc, int argv) { int a = 1; int b = 2; int c = a + b; return c; }