partial_partial_alpha
| partial_partial_alpha | |
|---|---|
| Turn-in directory | 05_partial_partial_alpha/ |
| Files to turn in | partial_partial_alpha.c |
| Allowed functions | putchar |
- Write a program which displays the alphabet in lowercase on standard output, starting from the character in variable
start_char, ending with the character instop_char, followed by a newline. - Your programs needs to have a variable called
start_char, by default it will hold the character'c'. Changing this value changes the output of your program. The value can be set to any lower or uppercase letter. - Your programs needs to have a variable called
stop_char, by default it will hold the character'x'. Changing this value changes the output of your program. The value can be set to any lowercase letter.
Example output:
$ ./a.out
cdeafghijklmnopqrstuvqx
$