9 lines
132 B
C
9 lines
132 B
C
|
#include <stdio.h>
|
||
|
int ft_strlen(char *str);
|
||
|
int main(void)
|
||
|
{
|
||
|
int l = ft_strlen("hello world!\0no!");
|
||
|
|
||
|
printf("len = %d\n", l);
|
||
|
}
|