summaryrefslogtreecommitdiff
path: root/day2/miscellaneus/alphabet_a_updated.c
blob: 51f7e869e35fdc55090c8925d9c826c9f5b14932 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <unistd.h>

void	ft_print_alphabet(void)

{
	char	c;
	{
	c = 'a';
		while (c <= 'z')
		{
			write(1, &c, 1);
	c++;
		}
	}
}