C Programming Which of the following is not a correct variable type? char int float double real char int float double real 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 12 13 11 14 Compilation error 12 13 11 14 ANSWER DOWNLOAD EXAMIANS APP
C Programming Who is father of C Language? James Gosling Dr. Bjarne Stroustrup F. Codd Dennis Ritchie James Gosling Dr. Bjarne Stroustrup F. Codd Dennis Ritchie ANSWER DOWNLOAD EXAMIANS APP
C Programming The recursive functions are executed in a ........... Random order Iterative order Parallel order Last In First Out order First In First Out order Random order Iterative order Parallel order Last In First Out order First In First Out order ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program if the array begins at address 65486?#includevoid main(){ int arr[] = {12, 14, 15, 23, 45}; printf("%u, %u", arr, &arr);} None of these 65486, 65488 65486, 65487 65486, 65486 65486, 65490 None of these 65486, 65488 65486, 65487 65486, 65486 65486, 65490 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:#define prod(a,b) a*bvoid main(){ int x=3, y=4; printf("%d", prod(x+2, y-1));} 11 15 12 10 11 15 12 10 ANSWER DOWNLOAD EXAMIANS APP