C Programming An array elements are always stored in ________ memory locations. Sequential None of these Random Sequential and Random Sequential None of these Random Sequential and Random ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=10; i=!i>14; printf("i=%d", i);} 14 1 0 10 14 1 0 10 ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.#define INC(X) X++void main(){ int x=4; printf("%d", INC(x++));} 6 4 5 Error 6 4 5 Error 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);} 14 11 13 12 Compilation error 14 11 13 12 Compilation error ANSWER DOWNLOAD EXAMIANS APP
C Programming The recursive functions are executed in a ........... First In First Out order Parallel order Random order Last In First Out order Iterative order First In First Out order Parallel order Random order Last In First Out order Iterative order ANSWER DOWNLOAD EXAMIANS APP
C Programming If integer needs two bytes of storage, then maximum value of an unsigned integer is 216 – 1 216 215 – 1 None of these 215 216 – 1 216 215 – 1 None of these 215 ANSWER DOWNLOAD EXAMIANS APP