C Programming The library function used to find the last occurrence of a character in a string is strnstr() None of these strrchr() laststr() strstr() strnstr() None of these strrchr() 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? None of these strstr() strnset() strchr() strrchr() None of these strstr() strnset() strchr() strrchr() ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following function is more appropriate for reading in a multi-word string? printf() None of these puts() gets() scanf() printf() None of these puts() gets() scanf() 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)));} Hello None of these World WorldHello Hello World Hello None of these World WorldHello Hello World ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#includevoid main(){ printf(5+"Good Morningn");} Good M Morning None of these Good Morning Good M Morning None of these Good Morning ANSWER DOWNLOAD EXAMIANS APP