Which of the following adds one string to the end of another?@append();@stringadd();@strcat();@stradd();@C@
What character ends all strings?@'.'@' '@'\0'@'\n''@C@
Which of the following reads in a string named x with one hundred characters?@cin.getline(x, 100, '\n');@cin.getline(100, x, '\n');@readline(x, 100, '\n');@read(x);@A@
Which of the following functions compares two strings?@compare();@stringcompare();@cmp();@strcmp();@D@
Which of the following is a static string?@Static String@"Static String"@'Static String'@char string[100];@B@
What character ends all strings?@'.'@ ' '@'\0'@'\n'@C@
which append character to string@appchr@charapp@push_back@push_chr@C@
Return reverse iterator to reverse beginning@cbegin@cppbegin@rbegin@none@C@
If char catname[15];, which of the following is valid?@catname[15] = "Millie";@catname = "Millie";@catname[ ] = "Millie";@none are valid@D@
Which bitwise operator is suitable for checking whether a particular bit is on or off?@&& operator@& operator@|| operator@! operator@B@
what is the function of "getchar" command ?@ read the string anything given as input @read a string until the '\n'(enter)@both @ none @A@
How will you print \n on the screen?@printf("\n");@echo "\\n";@printf('\n');@printf("\\n");@D@
The library function used to find the last occurrence of a character in a string is@strnstr()@laststr()@strrchr()@strstr()@C@
Which of the following function is used to find the first occurrence of a given string in another string?@strchr()@strrchr()@strstr()@strnset()@C@
Which of the following function is more appropriate for reading in a multi-word string?@printf():@scanf();@gets();@puts();@C@
