home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / INFO / C / SUPER_C.ZIP / ADD1TO2.C < prev    next >
Encoding:
Text File  |  1980-01-01  |  277 b   |  17 lines

  1. /*              Example: Add 1 to 2 and Print It
  2.  */
  3.  
  4. /*      main()
  5.  
  6.         Function: Add 1 and 2 and print the result.
  7.  
  8.         Algorithm: Call add to add the two numbers, and printf to print them.
  9. */
  10.  
  11. main()
  12.  
  13. {
  14.         printf("1 + 2 = %d.\n",add(1,2));
  15. }
  16.  
  17.