C Programming int a[5] = {1,2,3}What is the value of a[4]? 0 2 3 Garbage Value 1 0 2 3 Garbage Value 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming If integer needs two bytes of storage, then maximum value of an unsigned integer is 215 215 – 1 None of these 216 216 – 1 215 215 – 1 None of these 216 216 – 1 ANSWER DOWNLOAD EXAMIANS APP
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 Run time error 20 20 10 10 10 20 Run time error 20 20 10 10 ANSWER DOWNLOAD EXAMIANS APP
C Programming Who is father of C Language? F. Codd Gosling James Dennis Ritchie Dr. Bjarne Stroustrup F. Codd Gosling James Dennis Ritchie Dr. Bjarne Stroustrup ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the given program?#includevoid main(){ int i=10; printf("i=%d", i); { int i=20; printf("i=%d", i); i++; printf("i=%d", i); } printf("i=%d", i);} 10 10 11 11 10 20 21 21 10 20 21 20 10 20 21 10 10 10 11 11 10 20 21 21 10 20 21 20 10 20 21 10 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=10; i=!i>14; printf("i=%d", i);} 14 10 1 0 14 10 1 0 ANSWER DOWNLOAD EXAMIANS APP