C Programming Determine Output:void main(){ int i = -1; +i; printf("i = %d, +i = %d", i, +i);} i = -1, +i = -1 i = 1, +i = 1 i = -1, +i = 1 None of These i = -1, +i = -1 i = 1, +i = 1 i = -1, +i = 1 None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following is not a correct variable type? float int real char double float int real char double 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[][4]){} void fun(int *p[3][4]){} None of these void fun(int p[][4]){} void fun(int *p[4]){} void fun(int *p[][4]){} void fun(int *p[3][4]){} ANSWER DOWNLOAD EXAMIANS APP
C Programming Which operator from the following has the lowest priority? Assignment operator Comma operator Unary-operator Division operator Conditional operator Assignment operator Comma operator Unary-operator Division operator Conditional operator ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following program?void main(){ int a, b, c, d; a = 3; b = 5; c = a, b; d = (a, b); printf("c=%d d=%d", c, d);} c=5 d=3 c=3 d=3 c=3 d=5 c=5 d=5 c=5 d=3 c=3 d=3 c=3 d=5 c=5 d=5 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be printed when this program is executed?int f(int x){ if(x <= 4) return x; return f(--x);}void main(){ printf("%d ", f(7)); } 4 5 6 7 1 2 3 4 Runtime error 4 Syntax error 4 5 6 7 1 2 3 4 Runtime error 4 Syntax error ANSWER DOWNLOAD EXAMIANS APP