home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C Programming Starter Kit 2.0
/
SamsPublishing-CProgrammingStarterKit-v2.0-Win31.iso
/
tyc
/
list15_5.c
< prev
next >
Wrap
C/C++ Source or Header
|
1993-10-16
|
323b
|
14 lines
/* Initializing an array of pointers to type char. */
#include <stdio.h>
main()
{
char *message[8] = { "Four", "score", "and", "seven",
"years", "ago,", "our", "forefathers" };
int count;
for (count = 0; count < 8; count++)
printf("%s ", message[count]);
}