C Programming The library function used to find the last occurrence of a character in a string is strnstr() strstr() strrchr() None of these laststr() strnstr() strstr() strrchr() None of these laststr() ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following correctly accesses the seventh element stored in arr, an array with 100 elements? arr{6} arr[7] arr{7} arr[6] None of these arr{6} arr[7] arr{7} arr[6] None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming #includevoid main(){ int *ptr, a=10; ptr = &a; *ptr += 1; printf("%d, %d", *ptr, a);} 10, 10 10, 11 11, 11 11, 10 10, 10 10, 11 11, 11 11, 10 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++));} 6 5 Error 4 6 5 Error 4 ANSWER DOWNLOAD EXAMIANS APP
C Programming When a function is recursively called all the automatic variables are stored in a .......... Register Array Queue Stack Linked list Register Array Queue Stack Linked list ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be output after executing following code?#include# define a 10void main(){ printf("%d..", a); foo(); printf("%d", a);}void foo(){ #undef a #define a 50} 10..10 Error 0 10..50 10..10 Error 0 10..50 ANSWER DOWNLOAD EXAMIANS APP