C Programming Which of the following function is used to find the first occurrence of a given string in another string? strchr() None of these strnset() strrchr() strstr() strchr() None of these strnset() strrchr() strstr() ANSWER DOWNLOAD EXAMIANS APP
C Programming Choose the correct output for the following program.#includevoid main(){ int a=10, b=11, c=13, d; d = (a=c, b+=a, c=a+b+c); printf("%d %d %d %d", d, a, b, c);} 13, 13, 24, 13 50, 13, 24, 50 50, 13, 11, 13 13, 10, 24, 50 50, 13, 24, 13 13, 13, 24, 13 50, 13, 24, 50 50, 13, 11, 13 13, 10, 24, 50 50, 13, 24, 13 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which operator has the lowest priority? && % ++ || + && % ++ || + ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the value of sum after the following program is executed?void main(){ int sum=1, index = 9; do{ index = index – 1; sum *= 2; }while( index > 9 );} 9 2 0.25 1 0.5 9 2 0.25 1 0.5 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 -10 -110 110 10 450 -10 -110 110 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:#define prod(a,b) a*bvoid main(){ int x=3, y=4; printf("%d", prod(x+2, y-1));} 10 15 11 12 10 15 11 12 ANSWER DOWNLOAD EXAMIANS APP