C Programming Which operator from the following has the lowest priority? Conditional operator Assignment operator Unary-operator Comma operator Division operator Conditional operator Assignment operator Unary-operator Comma operator Division operator 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);} 50, 13, 24, 50 13, 13, 24, 13 50, 13, 24, 13 13, 10, 24, 50 50, 13, 11, 13 50, 13, 24, 50 13, 13, 24, 13 50, 13, 24, 13 13, 10, 24, 50 50, 13, 11, 13 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following comments about the ++ operator are correct? All of these The operand can come before or after the operator It cannot be applied to an expression It associates from the right It is a unary operator All of these The operand can come before or after the operator It cannot be applied to an expression It associates from the right It is a unary operator ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ static char *s[] = {"black", "white", "yellow", "violet"}; char **ptr[] = {s+3, s+2, s+1, s}, ***p; p = ptr; ++p; printf("%s",*--*++p + 3); } ck te ow et ck te ow et ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following is correct way to define the function fun() in the below program?#includevoid main(){ int a[3][4]; fun(a);} None of these void fun(int *p[4]){} void fun(int p[][4]){} void fun(int *p[3][4]){} void fun(int *p[][4]){} None of these void fun(int *p[4]){} void fun(int p[][4]){} void fun(int *p[3][4]){} void fun(int *p[][4]){} ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following function is used to find the first occurrence of a given string in another string? strstr() strchr() strrchr() strnset() None of these strstr() strchr() strrchr() strnset() None of these ANSWER DOWNLOAD EXAMIANS APP