C Programming What will be the output of the program ?#includeint main(){ int arr[1] = {10}; printf("%d", 0[arr]); return 0;} None of these 10 0 6 1 None of these 10 0 6 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output of the following program code.#includevoid main(){ int a, b=7; a = b<4 ? b<<1 : ++b>4 ? 7>>1 : a; printf("%d %d", a, b);} 7 3 None of these 8 3 3 8 3 7 7 3 None of these 8 3 3 8 3 7 ANSWER DOWNLOAD EXAMIANS APP
C Programming Who is father of C Language? F. Codd James Dennis Ritchie Gosling Bjarne Stroustrup Dr. F. Codd James Dennis Ritchie Gosling Bjarne Stroustrup Dr. ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=1, j=2; switch(i) { case 1: printf("GOOD"); break; case j: printf("BAD"); break; }} None of These Compiler Error GOOD GOOD BAD None of These Compiler Error GOOD GOOD BAD ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following is not a correct variable type? double char real int float double char real int float ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int a[] = {10,20,30,40,50}, j, *p; for(j=0; j<5; j++){ printf("%d" ,*a); a++; } p = a; for(j=0; j<5; j++){ printf("%d" ,*p); p++; }} Error 10 20 30 40 50 10 20 30 40 50 10 20 30 40 50 Garbage Value None of These Error 10 20 30 40 50 10 20 30 40 50 10 20 30 40 50 Garbage Value None of These ANSWER DOWNLOAD EXAMIANS APP