/**************************************************************************** * math2.c * * Computer Science 50 * David J. Malan * * 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", z); }