Examveda
Examveda

What is the return value of the following statement if it is placed in C program? strcmp("ABC", "ABC");

A. 33

B. -1

C. 1

D. 0

E. Compilation Error

Answer: Option D

Solution(By Examveda Team)

strcmp(s1, s2);
returns int as follows:
== 0, when s1 == s2
< 0, when s1 < s2
> 0, when s1 > s2


This Question Belongs to C Program >> Arrays And Strings

Join The Discussion

Related Questions on Arrays and Strings