Wheres the rest???????????????????
Answer:
1.T 2.f 3.t 4.f 5.f 6.f 7.t 8.t 9.f
Answer:
The strlen() function calculates the length of a given string.The strlen() function is defined in string.h header file.
Explanation:
It doesn’t count null character ‘0’. Syntax: int strlen(const char *str); Parameter: str: It represents the string variable whose length we have to find. Return: This function returns the length of string passed.