Examveda
Examveda

If the two strings are identical, then strcmp() function returns

A. 1

B. 0

C. -1

D. true

E. None of these

Answer: Option B

Solution(By Examveda Team)

Declaration: strcmp(const char *s1, const char*s2);

The strcmp return an int value that is
if s1 < s2 returns a value < 0
if s1 == s2 returns 0
if s1 > s2 returns a value > 0


This Question Belongs to C Program >> Arrays And Strings

Join The Discussion

Related Questions on Arrays and Strings