c_piscine__offshore_mains/c01/ex06.c

9 lines
132 B
C
Raw Normal View History

2023-11-22 18:15:58 +00:00
#include <stdio.h>
int ft_strlen(char *str);
int main(void)
{
int l = ft_strlen("hello world!\0no!");
printf("len = %d\n", l);
}