C Programming Which of the following function is used to find the first occurrence of a given string in another string? strchr() strnset() strstr() strrchr() None of these strchr() strnset() strstr() strrchr() None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following comments about the ++ operator are correct? All of these It associates from the right It cannot be applied to an expression The operand can come before or after the operator It is a unary operator All of these It associates from the right It cannot be applied to an expression The operand can come before or after the operator It is a unary operator ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.#includevoid main(){ int y=10; if(y++>9 && y++!=11 && y++>11) printf("%d", y); else printf("%d", y);} 14 11 12 13 Compilation error 14 11 12 13 Compilation error 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
C Programming What will be printed after execution of the following code?void main(){ int arr[10] = {1,2,3,4,5}; printf("%d", arr[5]);} 6 5 Garbage Value None of these 0 6 5 Garbage Value None of these 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:void main(){ int i=10; i = !i>14; printf("i=%d", i); } None of these 14 0 10 1 None of these 14 0 10 1 ANSWER DOWNLOAD EXAMIANS APP