partial_alpha

partial_alpha
Turn-in directory04_partial_alpha/
Files to turn inpartial_alpha.c
Allowed functionsputchar
  • 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 output:

$ ./a.out
cdeafghijklmnopqrstuvqxyz
$