home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Devil's Doorknob BBS Capture (1996-2003)
/
devilsdoorknobbbscapture1996-2003.iso
/
Dloads
/
PROGRAMM
/
CTUTOR.ZIP
/
SOURCE.ZIP
/
BACKWARD.C
< prev
next >
Wrap
Text File
|
1986-05-27
|
512b
|
23 lines
main()
{
char line_of_char[80];
int index = 0;
strcpy(line_of_char,"This is a string.\n");
forward_and_backwards(line_of_char,index);
}
forward_and_backward(line_of_char,index)
char line_of_char[];
int index;
{
if (line_of_char[index]) {
printf("%c",line_of_char[index]);
index++;
forward_and_backward_call(line_of_char,index);
}
printf("%c",line_of_char[index]);
}