home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Piper's Pit BBS/FTP: ibm 0000 - 0009
/
ibm0000-0009
/
ibm0003.tar
/
ibm0003
/
LCNOW2.ZIP
/
EXAMPLES
/
NUMBERS.C
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1988-01-05
|
221 b
|
16 lines
/*
* N U M B E R S
*
* Show how to print strings that involve
* both text and numbers.
*/
main()
{
int n1, n2;
n1 = 10;
n2 = 3;
printf("The number %d is bigger than the number %d.\n", n1, n2);
}