C Programming What will be the output of the following program?#includevoid main(){ int i = 10; void *p = &i; printf("%d\n", (int)*p);} 10 Compiler time error Undefined behavior Segmentation fault/runtime crash 10 Compiler time error Undefined behavior Segmentation fault/runtime crash ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.#includevoid main(){ int y=10; if(y++>9 && y++!=10 && y++>11) printf("%d", y); else printf("%d", y);} 13 11 Compilation error 12 14 13 11 Compilation error 12 14 ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the maximum number of dimensions an array in C may have? 8 Theoratically no limit. The only practical limits are memory size and compilers. 2 50 20 8 Theoratically no limit. The only practical limits are memory size and compilers. 2 50 20 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following correctly accesses the seventh element stored in arr, an array with 100 elements? arr{7} arr[6] arr{6} None of these arr[7] arr{7} arr[6] arr{6} None of these arr[7] ANSWER DOWNLOAD EXAMIANS APP
C Programming Who is father of C Language? Dr. Gosling Bjarne Stroustrup F. Codd James Dennis Ritchie Dr. Gosling Bjarne Stroustrup F. Codd James Dennis Ritchie ANSWER DOWNLOAD EXAMIANS APP
C Programming Which operator from the following has the lowest priority? Division operator Conditional operator Comma operator Unary-operator Assignment operator Division operator Conditional operator Comma operator Unary-operator Assignment operator ANSWER DOWNLOAD EXAMIANS APP