- strlen()
int strlen (char s[])
{
int i;
i = 0;
while ( s[i] != '\0' )
++i;
return i;
}
- memset()
void* memset(char s[], char c, int n);
place character c into first n characters of s, return s.
int strlen (char s[])
{
int i;
i = 0;
while ( s[i] != '\0' )
++i;
return i;
}
void* memset(char s[], char c, int n);
place character c into first n characters of s, return s.