C Programming Which of the following function is more appropriate for reading in a multi-word string? None of these scanf() gets() printf() puts() None of these scanf() gets() printf() puts() ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following correctly accesses the seventh element stored in arr, an array with 100 elements? arr[7] arr{6} arr[6] None of these arr{7} arr[7] arr{6} arr[6] None of these arr{7} ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the given program?#includevoid main(){int value1, value2=100, num=100;if(value1=value2%5) num=5;printf("%d %d %d", num, value1, value2);} 100 100 100 100 0 100 100 5 100 5 0 20 5 0 100 100 100 100 100 0 100 100 5 100 5 0 20 5 0 100 ANSWER DOWNLOAD EXAMIANS APP
C Programming The library function used to find the last occurrence of a character in a string is strstr() strnstr() laststr() None of these strrchr() strstr() strnstr() laststr() None of these strrchr() 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 WorldHello Hello World World None of these Hello WorldHello Hello World World None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.#define INC(X) X++void main(){ int x=4; printf("%d", INC(x++));} 4 5 6 Error 4 5 6 Error ANSWER DOWNLOAD EXAMIANS APP