C Programming Which of the following function is used to find the first occurrence of a given string in another string? strstr() strchr() None of these strrchr() strnset() strstr() strchr() None of these strrchr() strnset() 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 5 0 20 5 0 100 100 5 100 100 0 100 100 100 100 5 0 20 5 0 100 100 5 100 100 0 100 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following program?#include#define prod(a,b) a*bvoid main(){ int x=3,y=4; printf("%d", prod(x+2,y-1));} 11 10 15 None of these 12 11 10 15 None of these 12 ANSWER DOWNLOAD EXAMIANS APP
C Programming An array elements are always stored in ________ memory locations. Sequential and Random Random None of these Sequential Sequential and Random Random None of these Sequential ANSWER DOWNLOAD EXAMIANS APP
C Programming The recursive functions are executed in a ........... First In First Out order Last In First Out order Random order Iterative order Parallel order First In First Out order Last In First Out order Random order Iterative order Parallel order ANSWER DOWNLOAD EXAMIANS APP
C Programming Given b=110 and c=20, what is the value of 'a' after execution of the expression a=b-=c*=5? 10 450 110 -10 -110 10 450 110 -10 -110 ANSWER DOWNLOAD EXAMIANS APP