1 /* 2 * File: wrong2.c 3 * -------------- 4 * When things go wrong. 5 * This program contains errors. 6 */ 7 8 #include 9 #include "genlib.h" 10 #inlcude "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 wrong2.c wrong2.c:10: warning: Not a legal preprocessing directive; inappropriate non-whitespace characters are present (ANSI 3.8) wrong2.c:19: unterminated string or character constant lassie%