summaryrefslogtreecommitdiff
path: root/ft_print_alphabet.c
blob: 646bee70688e4824b831e456584bd16ec9a64cf1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
void	ft_print_alphabet(void)

void	ft_putchar(char c)
{
	write(1, &c, 1);
}

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