InterviewSolution
Saved Bookmarks
| 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) |
|