home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / alde_c / misc / util / super_c / 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.