partial_alpha
| partial_alpha | |
|---|---|
| Turn-in directory | 04_partial_alpha/ |
| Files to turn in | 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, 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 lowercase letter.- Example:
char start_char; start_char = 'c';
- Example:
Example output:
$ ./a.out
cdeafghijklmnopqrstuvqxyz
$