ft_strlen.c 321 B

1234567891011121314151617181920212223242526
  1. // Reproduce the behavior of the function strlen (man strlen)
  2. #include <stdio.h>
  3. int ft_strlen(char *str)
  4. {
  5. int count;
  6. count = 0;
  7. while(*str)
  8. {
  9. *str++;
  10. count++;
  11. }
  12. return (count);
  13. }
  14. int main(void)
  15. {
  16. int a, b;
  17. a = ft_strlen("Hello, World");
  18. b = ft_strlen("Hi");
  19. printf("%d, %d", a, b);
  20. return (0);
  21. }