Explain the funtion strlen() with the example
Answers
Answered by
1
Answer:
returns the length of a string given as a variable.
e. g. :
s="word" // s is a variable contains "word"
x=strlen(s) // after executing x shows value
4
Similar questions