C Programming The library function used to find the last occurrence of a character in a string is None of these laststr() strnstr() strstr() strrchr() None of these laststr() strnstr() strstr() strrchr() ANSWER DOWNLOAD EXAMIANS APP
C Programming int a[5] = {1,2,3}What is the value of a[4]? 1 0 2 Garbage Value 3 1 0 2 Garbage Value 3 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following code fragment?void main(){ printf("%x",-1<<4);} fff2 fff3 fff1 fff0 fff4 fff2 fff3 fff1 fff0 fff4 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#includeint main(){ int arr[1] = {10}; printf("%d", 0[arr]); return 0;} 1 10 6 None of these 0 1 10 6 None of these 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the difference between a declaration and a definition of a variable? Both can occur multiple times, but a declaration must occur first. A declaration occurs once, but a definition may occur many times. There is no difference between them. Both can occur multiple times, but a definition must occur first. A definition occurs once, but a declaration may occur many times. Both can occur multiple times, but a declaration must occur first. A declaration occurs once, but a definition may occur many times. There is no difference between them. Both can occur multiple times, but a definition must occur first. A definition occurs once, but a declaration may occur many times. ANSWER DOWNLOAD EXAMIANS APP
C Programming Which operator from the following has the lowest priority? Assignment operator Unary-operator Comma operator Conditional operator Division operator Assignment operator Unary-operator Comma operator Conditional operator Division operator ANSWER DOWNLOAD EXAMIANS APP