1 /* 2 * File: wrong3.c 3 * -------------- 4 * When things go wrong. 5 * This program contains errors. 6 */ 7 8 #include 9 #include "genlib.h" 10 #include "simpio.h" 11 12 main() 13 { 14 int n1, n2, total 15 16 printf("This program adds two numbers.\n"); 17 printf("1st number? "); 18 n1 = GetInteger() ; 19 printf("2nd number? "); 20 n2 = GetInteger(); 21 total = n1 + n2; 22 printf("The total is %d.\n", total); 23 } ____________________________________________________________ lassie% cc201 wrong3.c accom: Error: wrong3.c, line 16: syntax error printf("This program adds two numbers.\n"); ---------^ lassie%