home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD2.mdf
/
c
/
tcpp
/
examples
/
intro28.c
< prev
next >
Wrap
C/C++ Source or Header
|
1990-06-09
|
232b
|
16 lines
/* INTRO28.C - Beispiel aus Kapitel 4 der
Einführung */
#include <stdio.h>
#include <string.h>
int main()
{
char name[60];
strcpy(name, "Bilbo ");
strcat(name, "Beutlin");
puts(name);
return 0;
}