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); }} Run time error 20 20 10 20 10 10 Run time error 20 20 10 20 10 10 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which operator has the lowest priority? ++ || + && % ++ || + && % ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ static int i=5; if(--i){ main(); printf("%d ", i); }} None of These 5 4 3 2 1 Infinite Loop 0 0 0 0 None of These 5 4 3 2 1 Infinite Loop 0 0 0 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following program code?#include void main(){ int i=3, *j, **k; j = &i; k = &j; printf("%d%d%d", *j, **k, *(*k));} 000 Garbage Value 444 333 433 000 Garbage Value 444 333 433 ANSWER DOWNLOAD EXAMIANS APP
C Programming C was primarily developed as Data processing language None of these System programming language General purpose language Data processing language None of these System programming language General purpose language ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char far *farther, *farthest; printf("%d..%d", sizeof(farther), sizeof(farthest));} 4..2 4..4 2..2 2..4 4..2 4..4 2..2 2..4 ANSWER DOWNLOAD EXAMIANS APP