home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Liren Large Software Subsidy 7
/
07.iso
/
c
/
c025
/
1.ddi
/
STRCPY.C
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Text File
|
1985-02-17
|
153 b
|
9 lines
main() /* strcpy.c -- demos string copy function: strcpy() */
{
char str1[20];
strcpy(str1, "Copy cat, copy cat");
printf("%s", str1);
}