Vidyalelo
Data Structure · Q881

Miscellaneous on Data Structures

Programming · Data Structure · question 881

Q881

What is the output of the following code? #include int get_len(char *s) int len = 0; while(s[len] != '\0') len++; return len; int main() char *s = "lengthofstring"; int len = get_len(s); printf("%d",len); return 0;

A.
14
Answer
B.
0
C.
Compile time error
D.
Runtime error

Answer: Option A

Solution

Answer: Option A
No explanation is given for this question Let's Discuss on Board