C Programming The library function used to find the last occurrence of a character in a string is strrchr() strnstr() None of these laststr() strstr() strrchr() strnstr() None of these laststr() strstr() ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following function is used to find the first occurrence of a given string in another string? strstr() strchr() strrchr() strnset() None of these strstr() strchr() strrchr() strnset() None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following function is more appropriate for reading in a multi-word string? None of these printf() gets() scanf() puts() None of these printf() gets() scanf() puts() ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#include#includevoid main(){ char str1[20] = "Hello", str2[20] = " World"; printf("%s", strcpy(str2, strcat(str1, str2)));} World Hello None of these Hello World WorldHello World Hello None of these Hello World WorldHello ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#includevoid main(){ printf(5+"Good Morningn");} M Good Morning Good Morning None of these M Good Morning Good Morning None of these ANSWER DOWNLOAD EXAMIANS APP