The…….function appends not more than n characters.
a) strcat()
b) strcon()
c) strncat()
d) memcat()
What will strcmp() function do?
a) compares the first n characters of the object
b) undefined function
c) copies the string
d) compares the string
What is a String in C Language?
a) String is a new Data Type in C
b) String is an array of Characters with null character as the last element of array
c) String is an array of Characters with null character as the first element of array
d) String is an array of Integers with 0 as the last element of array
What is the Format specifier used to print a String or Character array in C Printf or Scanf function?
a) %c
b) %C
c) %s
d) %w
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)
What is the function of strcoll()?
a) copies the string, result is dependent on the LC_COLLATE
b) compares the string, result is not dependent on the LC_COLLATE
c) compares the string, result is dependent on the LC_COLLATE
d) copies the string, result is not dependent on the LC_COLLAT