C Programming Determine output:void main(){ int i=0, j=1, k=2, m; m = i++ || j++ || k++; printf("%d %d %d %d", m, i, j, k);} 1 1 2 3 1 1 2 2 0 1 2 3 0 1 2 2 None of these 1 1 2 3 1 1 2 2 0 1 2 3 0 1 2 2 None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program if the array begins at 65472 and each integer occupies 2 bytes?#includevoid main(){ int a[3][4] = {1, 2, 3, 4, 4, 3, 2, 1, 7, 8, 9, 0}; printf("%u, %u", a+1, &a+1);} 65474, 65488 65480, 65488 65474, 65476 None of these 65480, 65496 65474, 65488 65480, 65488 65474, 65476 None of these 65480, 65496 ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the maximum number of dimensions an array in C may have? 20 2 8 Theoratically no limit. The only practical limits are memory size and compilers. 50 20 2 8 Theoratically no limit. The only practical limits are memory size and compilers. 50 ANSWER DOWNLOAD EXAMIANS APP
C Programming C preprocessor All of these Acts before compilation Takes care of conditional compilation Takes care of include files Takes care of macros All of these Acts before compilation Takes care of conditional compilation Takes care of include files Takes care of macros ANSWER DOWNLOAD EXAMIANS APP
C Programming The recursive functions are executed in a ........... Random order Parallel order Iterative order First In First Out order Last In First Out order Random order Parallel order Iterative order First In First Out order Last In First Out order 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 12 10 None of these 15 11 12 10 None of these 15 ANSWER DOWNLOAD EXAMIANS APP