C Program to print all the English Alphabets in lower case

Output:

a b c d e f g h I j k l m n o p q r s t u v w x y z

Try your Solution

Strongly recommended to Solve it on your own, Don't directly go to the solution given below.

#include<stdio.h> int main() { //write your code here }

Program or Solution

				
			
					
#include<stdio.h>
int main()
{
	int i;
	for(i='a';i<='z';i++)
	{
		printf("%c",i);
	}
	return 0;
}
			
				
			

Program Explanation

Instruction(s) inside the for block{} are executed repeatedly till the second expression is true.

Here i is initialized to a (97) and incremented by 1 for each iteration, instructions inside the for block are executed unless i becomes greater than z(122).

so value of i will be printed as character like a,b,c...z using printf statement and format specifier %c.

Comments


Related Programs