This set of C Multiple Choice Questions & Answers (MCQs) focuses on “String Operations – 2”.
Pre-requisite for this C MCQ set: Advanced C Programming Video Tutorial.
1. What type of return-type used in String operations?
a) void only
b) void and (char *) only
c) void and int only
d) void, int and (char *) only
View Answer
Explanation: None.
2. String operation such as strcat(s, t), strcmp(s, t), strcpy(s, t) and strlen(s) heavily rely upon.
a) Presence of NULL character
b) Presence of new-line character
c) Presence of any escape sequence
d) None of the mentioned
View Answer
Explanation: None.
3. Which pre-defined function returns a pointer to the last occurence of a character in a string?
a) strchr(s, c);
b) strrchr(s, c);
c) strlchr(s, c);
d) strfchr(s, c);
View Answer
Explanation: None.
4. Which of the following function compares 2 strings with case-insensitively?
a) strcmp(s, t)
b) strcmpcase(s, t)
c) strcasecmp(s, t)
d) strchr(s, t)
View Answer
Explanation: None.
5. What will be the value of var for the following C statement?
var = strcmp("Hello", "World");
a) -1
b) 0
c) 1
d) strcmp has void return-type
View Answer
Explanation: None.
6. What will be the output of the following C code?
#include <stdio.h>
int main()
{
char str[10] = "hello";
char *p = strrchr(str, 'l');
printf("%c\n", *(++p));
}
a) l
b) o
c) e
d) Compilation error
View Answer
Explanation: None.
Sanfoundry Global Education & Learning Series – C Programming Language.
To practice all areas of C language, here is complete set of 1000+ Multiple Choice Questions and Answers.
- Apply for Computer Science Internship
- Check C Books
- Practice BCA MCQs
- Practice Computer Science MCQs
- Apply for C Internship