C Programming Who is father of C Language? Bjarne Stroustrup James Gosling Dennis Ritchie Dr. F. Codd Bjarne Stroustrup James Gosling Dennis Ritchie Dr. F. Codd 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);} Compilation error 14 12 11 13 Compilation error 14 12 11 13 ANSWER DOWNLOAD EXAMIANS APP
C Programming An array elements are always stored in ________ memory locations. Sequential Random Sequential and Random None of these Sequential Random Sequential and Random None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming The default parameter passing mechanism is None of these. call by value result call by reference call by value None of these. call by value result call by reference call by value ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ static int i=5; if(--i){ main(); printf("%d ", i); }} 0 0 0 0 5 4 3 2 1 Infinite Loop None of These 0 0 0 0 5 4 3 2 1 Infinite Loop None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.#includevoid main(){ int y=10; if(y++>9 && y++!=11 && y++>11) printf("%d", y); else printf("%d", y);} 12 Compilation error 11 13 14 12 Compilation error 11 13 14 ANSWER DOWNLOAD EXAMIANS APP