Exam 01 Piscine 42 Exclusive Now
You cannot iterate using a for loop that decrements. You must use a while loop with a counter. Additionally, you cannot use any standard library function (no strlen from <string.h> ).
if (!str) // Check for NULL return; while (*str) write(1, str++, 1); exam 01 piscine 42 exclusive
write(1, &str[i], 1); i++;
ft_putstr("Hello Exam 01"); return (0);