15 lines
148 B
C
15 lines
148 B
C
|
#include <stdio.h>
|
||
|
#include <unistd.h>
|
||
|
|
||
|
void ft_print_alphabet(void)
|
||
|
{
|
||
|
char ch;
|
||
|
|
||
|
ch = 'a';
|
||
|
while (ch <= 'z')
|
||
|
{
|
||
|
write(1, &ch, 1);
|
||
|
ch++;
|
||
|
}
|
||
|
}
|