home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / editor / vp_demo.zip / VCSD.ZIP / ADDER.C next >
C/C++ Source or Header  |  1990-09-18  |  826b  |  38 lines

  1. /*    This is a simple "C" program.            */
  2. /*    It purposely contains several syntax errors.    */
  3. /*    Compile with Microsoft C or Borland Turbo C    */
  4.  
  5.  
  6. #include "conio.h"
  7. #include "stdio.h"
  8. #include "stddef.h"
  9. #include "stdlib.h"
  10.  
  11. #define    FOREVER 1
  12.  
  13. main()
  14. {
  15.  
  16. int num1, num2;
  17. char inline[80];
  18.  
  19.     printf("\nWelcome to the simple calculator.  You enter two numbers");
  20.     printf("\nand the computer will add them.  Enter \"0\" to quit.");
  21.  
  22.     do {
  23.     
  24.         printf("\n\nEnter first number: ");
  25.         num0 = atoi(gets(inline));    /* Should be "num1 = ..." */
  26.         if (num1 == 0) break;
  27.  
  28.         printf("\nEnter second number: ");
  29.         num2 = atoi(gets(inline));
  30.  
  31.         printf("\nThe sum = %d\n",num1+num2);
  32.  
  33.     } while (FORVER);        /* Should be "} while (FOREVER);" */
  34.  
  35.     printf("\nThe simple calculator is now done.");
  36.     
  37. }
  38.