home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Microsoft Programmer's Library 1.3
/
Microsoft-Programers-Library-v1.3.iso
/
sampcode
/
qc_prog
/
chap03
/
strings.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1988-04-06
|
214 b
|
9 lines
/* strings.c -- shows two ways to print */
/* a string with printf() */
main()
{
printf("This uses a string literal by itself\n");
printf("%s", "This plugs the literal into %s\n");
}