Norminetted ex01

This commit is contained in:
Timo Schmidt 2023-03-15 22:13:08 +01:00
parent 707a2daad6
commit 36da01d5a9
1 changed files with 6 additions and 3 deletions

View File

@ -6,7 +6,7 @@
/* By: tischmid <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/03/15 21:50:37 by tischmid #+# #+# */
/* Updated: 2023/03/15 21:54:06 by tischmid ### ########.fr */
/* Updated: 2023/03/15 22:09:02 by tischmid ### ########.fr */
/* */
/* ************************************************************************** */
@ -14,8 +14,11 @@
void ft_print_alphabet(void)
{
unsigned int i = 97;
while (i < 123) {
unsigned int i;
i = 97;
while (i < 123)
{
write(1, &i, 1);
i++;
}