home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Between Heaven & Hell 2
/
BetweenHeavenHell.cdr
/
100
/
95
/
stringin.c
< prev
next >
Wrap
C/C++ Source or Header
|
1987-11-21
|
400b
|
18 lines
/* Chapter 9 - Program 5 */
#include "stdio.h"
main()
{
char big[25];
printf("Input a character string, up to 25 characters.\n");
printf("An X in column 1 causes the program to stop.\n");
do {
scanf("%s",big);
printf("The string is -> %s\n",big);
} while (big[0] != 'X');
printf("End of program.\n");
}