/**************************************************************************** * math2.c * * David J. Malan * malan@harvard.edu * * Computes and prints an integral total. * * Demonstrates use of a format string. ***************************************************************************/ #include int main(void) { int x = 1; int y = 2; int z = x + y; printf("%d\n", z); return 0; }