home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / tcpp / examples / intro28.c < prev    next >
C/C++ Source or Header  |  1990-06-09  |  232b  |  16 lines

  1. /* INTRO28.C - Beispiel aus Kapitel 4 der
  2.    Einführung */
  3.  
  4. #include <stdio.h>
  5. #include <string.h>
  6.  
  7. int main()
  8. {
  9.    char name[60];
  10.    strcpy(name, "Bilbo ");
  11.    strcat(name, "Beutlin");
  12.    puts(name);
  13.  
  14.    return 0;
  15. }
  16.