C program to print all lowercase alphabets using while loop
To print the lowercase alphabets from 'a' to 'z',
- We will declare a variable for loop counter (alphabet) and initialize it by 'a' (lowercase 'a').
- We will check the condition whether loop counter is less than or equal to 'z', if condition is true numbers will be printed.
- If condition is false – loop will be terminated.
Program to print all lowercase alphabets from 'a' to 'z' using while loop in C
Output
need an explanation for this answer? contact us directly to get an explanation for this answer