C Programming What is the output of the following statements?int i = 0;printf("%d %d", i, i++); 1 1 0 0 1 0 0 1 None of these 1 1 0 0 1 0 0 1 None of these ANSWER DOWNLOAD EXAMIANS APP
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 2 None of these 0 1 2 3 1 1 2 3 1 1 2 2 0 1 2 2 None of these 0 1 2 3 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output?void main(){ int a=10, b=20; char x=1, y=0; if(a,b,x,y){ printf("EXAM"); } } XAM is printed Compiler Error Nothing is printed exam is printed XAM is printed Compiler Error Nothing is printed exam is printed ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following correctly accesses the seventh element stored in arr, an array with 100 elements? arr[7] None of these arr[6] arr{7} arr{6} arr[7] None of these arr[6] arr{7} arr{6} ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.void main(){ printf("%d, %d", sizeof(int *), sizeof(int **));} 2, 4 2, 2 0, 2 4, 4 2, 0 2, 4 2, 2 0, 2 4, 4 2, 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which operator from the following has the lowest priority? Division operator Conditional operator Assignment operator Comma operator Unary-operator Division operator Conditional operator Assignment operator Comma operator Unary-operator ANSWER DOWNLOAD EXAMIANS APP