Computer Science, asked by abhikoundal1508, 8 months ago

(strlen(“India is

great”) function will return _______ length of the string.​

Answers

Answered by neymarbrasilbr10
1

Answer:

Function will return the total length of the string

Explanation:

Strlen stands for string length so simply you can understand that it will tell you it's length in numbers.

Example:- (strlen("Brazil")) gives 6 in output as the word "Brazil " contains 6 letters

Answered by nidaeamann
1

Answer:

Length of string is 14

Explanation:

Strlen is a library function in C / C++ and other programming languages. The function requires an argument which is the string itself and then returns the output as the number of characters or length of the string. Here in our case there are 12 characters in total and two spaces between them also, a space is also represented by a character hence, total length is 14

Similar questions