Question: ANSWER IN C LANGUAGE: Declare a character variable letterStart. Write a statement to read a letter from the user into letterStart, followed by statements that
ANSWER IN C LANGUAGE:
Declare a character variable letterStart. Write a statement to read a letter from the user into letterStart, followed by statements that output that letter and the next letter in the alphabet. End with a newline. Hint: A letter is stored as its ASCII number, so adding 1 yields the next letter. Sample output assuming the user enters 'd': de
#include
int main(void) {
/* Your solution goes here */
return 0; }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
