C Programming What will be the output of the program ?#includevoid main(){ printf(5+"Good Morningn");} Good Morning Good M Morning None of these Good Morning Good M Morning 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() None of these scanf() printf() gets() puts() None of these scanf() printf() gets() ANSWER DOWNLOAD EXAMIANS APP
C Programming Which operator has the lowest priority? + && ++ || % + && ++ || % ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#includevoid main(){ int a[5] = {5, 1, 15, 20, 25}; int i, j, m; i = ++a[1]; j = a[1]++; m = a[i++]; printf("%d, %d, %d", i, j, m);} 1, 2, 5 3, 2, 15 2, 3, 20 2, 1, 15 1, 2, 5 3, 2, 15 2, 3, 20 2, 1, 15 ANSWER DOWNLOAD EXAMIANS APP
C Programming The library function used to find the last occurrence of a character in a string is None of these laststr() strrchr() strstr() strnstr() None of these laststr() strrchr() strstr() strnstr() ANSWER DOWNLOAD EXAMIANS APP
C Programming Which operator from the following has the lowest priority? Conditional operator Assignment operator Comma operator Unary-operator Division operator Conditional operator Assignment operator Comma operator Unary-operator Division operator ANSWER DOWNLOAD EXAMIANS APP