C Program to print alphabets a-z using For

#include<stdio.h>
int main()
{
	char ch;

	printf("Alphabets from a - z are: \n");

	for(ch='a';ch<='z';ch++)
	{
		printf("%c       ",ch);
	}

	return 0;
}

Output

Alphabets from a - z are:
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