#include <stdio.h>
`void BackwardsAlphabet(char currLetter){‘
if (currLetter == 'a'){
printf("%cn", currLetter);
} else { printf(“%cn”, currLetter);
BackwardsAlphabet(currLetter -1);
}
}
int main (void) {
char startingLetter;
startingLetter = ‘z’;
// enter your solution here//
return 0;
}
New contributor
Soroush Nikbakht is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.