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