Home / C Programming / Arrays :: Discussion

Discussion :: Arrays

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

  2. A.

     33

    B.

     -1

    C.

     1

    D.

     0

    E.

     Compilation Error

    View Answer

    Workspace

    Answer : Option D

    Explanation :

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


Be The First To Comment