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