partial_partial_alpha

partial_partial_alpha
Turn-in directory05_partial_partial_alpha/
Files to turn inpartial_partial_alpha.c
Allowed functionsputchar
  • Write a program which displays the alphabet in lowercase on standard output, starting from the character in variable start_char, ending with the character in stop_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
$