#include <stdio.h>
int length_of_string(char *s) {
int count = 0;
while (s != ' ') {
count++;
p++;
}
return (count);
}
/**
* main - check the code
*
* Return: Always 0.
*/
int main(void)
{
char *str;
int len;
str = "My first strlen!";
len = _strlen(str);
printf("%d
", len);
return (0);
}