// test-arithmetic.c int main(int argc, int argv) { int a = 5; int b = 3; int c = a + b; return c; }