#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
int mystrlen(const char *str);
int main()
{
char *q = "hello world";
printf("%d\n", mystrlen(q));
return 0;
}
int mystrlen(const char *str)
{
assert(str != NULL);
int len = 0;
while ((*str++) != '\0')
{
len++;
}
return len;
}