C Programming What does the following declaration mean?int (*ptr)[10]; ptr is array of pointers to 10 integers ptr is an array of 10 integers ptr is a pointer to an array of 10 integers ptr is an pointer to array ptr is array of pointers to 10 integers ptr is an array of 10 integers ptr is a pointer to an array of 10 integers ptr is an pointer to array ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output given program?#includevoid main(){int i = -10;for(;i;printf("%d ", i++));} Complier error -10 to infinite -10 to 0 -10 to -1 Complier error -10 to infinite -10 to 0 -10 to -1 ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the output of the following statements?for(i=10; i++; i<15) printf("%d ", i); 9 10 11 12 13 Infinite loop 10 11 12 13 14 15 10 11 12 13 14 None of these 9 10 11 12 13 Infinite loop 10 11 12 13 14 15 10 11 12 13 14 None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the final value of the digit?void main(){ int digit = 0; for( ; digit <= 9; ) digit++; digit *= 2; --digit;} 16 -1 19 20 17 16 -1 19 20 17 ANSWER DOWNLOAD EXAMIANS APP
C Programming C programs are converted into machine language with the help of None of these. An operating system A compiler An Editor None of these. An operating system A compiler An Editor ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=0, j=0; if(i && j++) printf("%d..%d", i++, j); printf("%d..%d", i, j);} 0..1 0..0 1..0 1..1 0..1 0..0 1..0 1..1 ANSWER DOWNLOAD EXAMIANS APP