C Programming Which command is used to skip the rest of a loop and carry on from the top of the loop again? resume None of these skip continue break resume None of these skip continue break ANSWER DOWNLOAD EXAMIANS APP
C Programming The address operator &, cannot act on Both of the above Local variables R-values Arithmetic expressions Members of a structure Both of the above Local variables R-values Arithmetic expressions Members of a structure ANSWER DOWNLOAD EXAMIANS APP
C Programming Choose the best answer.Prior to using a pointer variable It should be both declared and initialized. None of these. It should be declared. It should be initialized. It should be both declared and initialized. None of these. It should be declared. It should be initialized. 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++));} Error 5 6 4 Error 5 6 4 ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.void main(){ int i=065, j=65; printf("%d %d", i, j);} Syntax error 065 65 65 65 053 65 53 65 Syntax error 065 65 65 65 053 65 53 65 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);} 14 12 13 Compilation error 11 14 12 13 Compilation error 11 ANSWER DOWNLOAD EXAMIANS APP