Solved

Assuming That String1 = "Hello" and String2 = "Hello World

Question 11

Multiple Choice

Assuming that string1 = "hello" and string2 = "hello world", which of the following returns 0?


A) strcmp(string1, string2) ;.
B) strcmp(string1, string2, 6) ;.
C) Strncmp(string1, string2, 5) ;.
D) strncmp(string1, string2, 6) ;.

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions