wild_alpha
| wild_alpha | |
|---|---|
| Turn-in directory | 06_wild_alpha/ |
| Files to turn in | wild_alpha.c |
| Allowed functions | putchar |
- Write a program which displays the alphabet in alternating lower and uppercase 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 lower or uppercase letter.
Example output:
$ ./a.out
CdEfGhIjKlMnOpQrStUvWxYz
$