C Programming What will be the value of i and j after execution of following program?#includevoid main(){int i, j;for(i=0,j=0;i<10,j<20;i++,j++){printf("i=%d %t j=%d", i, j); }} 10 10 20 20 10 20 Run time error 10 10 20 20 10 20 Run time error ANSWER DOWNLOAD EXAMIANS APP
C Programming In an expression involving || operator, evaluationI. Will be stopped if one of its components evaluates to falseII. Will be stopped if one of its components evaluates to trueIII. Takes place from right to leftIV. Takes place from left to right I and III II and III II and IV I and II III and IV I and III II and III II and IV I and II III and IV ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following correctly accesses the seventh element stored in arr, an array with 100 elements? arr[6] None of these arr{6} arr[7] arr{7} arr[6] None of these arr{6} arr[7] arr{7} ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following code?void main(){ int a[10]; printf("%d %d", a[-1], a[12]);} 0 0 Garbage vlaue Garbage Value 0 Garbage Value Garbage value 0 Code will not compile 0 0 Garbage vlaue Garbage Value 0 Garbage Value Garbage value 0 Code will not compile ANSWER DOWNLOAD EXAMIANS APP
C Programming Consider the following program fragment, and choose the correct onevoid main(){ int a, b = 2, c; a = 2 * (b++); c = 2 * (++b);} b = 3, c = 6 b = 4, c = 6 a = 4, c = 6 a = 3, c = 8 a = 4, c = 8 b = 3, c = 6 b = 4, c = 6 a = 4, c = 6 a = 3, c = 8 a = 4, c = 8 ANSWER DOWNLOAD EXAMIANS APP
C Programming In which stage the following code#includegets replaced by the contents of the file stdio.h During Execution None of these During linking During Editing During Preprocessing During Execution None of these During linking During Editing During Preprocessing ANSWER DOWNLOAD EXAMIANS APP