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 20 20 20 10 10 Run time error 10 20 20 20 10 10 Run time error ANSWER DOWNLOAD EXAMIANS APP
C Programming Which operator has the lowest priority? + % ++ && || + % ++ && || ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=i++, j=j++, k=k++; printf("%d %d %d", i, j, k);} garbage values 1 1 1 Error 0 0 0 garbage values 1 1 1 Error 0 0 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be printed if the following code is executed?void main(){ int x=0; for( ; ; ) { if( x++ == 4 ) break; continue; } printf("x=%d", x);} Error x=1 x=5 x=4 x=0 Error x=1 x=5 x=4 x=0 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following is the correct way of declaring a float pointer: *float ptr; None of these float *ptr; float ptr; *float ptr; None of these float *ptr; float ptr; ANSWER DOWNLOAD EXAMIANS APP
C Programming Functions have .......... File scope No scope at all Block scope Local scope Function scope File scope No scope at all Block scope Local scope Function scope ANSWER DOWNLOAD EXAMIANS APP