1.

What is the prototype of strcoll() function?(a) int strcoll(const char *s1,const char *s2)(b) int strcoll(const char *s1)(c) int strcoll(const *s1,const *s2)(d) int strcoll(const *s1)This question was addressed to me during an interview.I'd like to ask this question from String Operations in chapter String Operations in C of C

Answer»

The CORRECT OPTION is (a) int strcoll(const char *S1,const char *s2)

The EXPLANATION is: The PROTOTYPE of strcoll() function is int strcoll(const char *s1,const char *s2).



Discussion

No Comment Found

Related InterviewSolutions