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