home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c021 / 7.img / EXAMPLES.ZIP / INTRO28.C < prev    next >
Encoding:
C/C++ Source or Header  |  1990-05-04  |  232 b   |  15 lines

  1. /* INTRO28.C--Example from Chapter 4 of Getting Started */
  2.  
  3. #include <stdio.h>
  4. #include <string.h>
  5.  
  6. int main()
  7. {
  8.    char name[60];
  9.    strcpy(name, "Bilbo ");
  10.    strcat(name, "Baggins");
  11.    puts(name);
  12.  
  13.    return 0;
  14. }
  15.