C Programming What is the output of the following statements?int i = 0;printf("%d %d", i, i++); 0 1 1 0 0 0 None of these 1 1 0 1 1 0 0 0 None of these 1 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the final value of the digit?void main(){ int digit = 0; for( ; digit <= 9; ) digit++; digit *= 2; --digit;} 16 20 -1 19 17 16 20 -1 19 17 ANSWER DOWNLOAD EXAMIANS APP
C Programming The recursive functions are executed in a ........... Iterative order Parallel order Last In First Out order Random order First In First Out order Iterative order Parallel order Last In First Out order Random order First In First Out order ANSWER DOWNLOAD EXAMIANS APP
C Programming Which command is used to skip the rest of a loop and carry on from the top of the loop again? None of these skip continue break resume None of these skip continue break resume ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following function is more appropriate for reading in a multi-word string? None of these puts() gets() scanf() printf() None of these puts() gets() scanf() printf() ANSWER DOWNLOAD EXAMIANS APP
C Programming Use of functions Makes the debugging task easier. Enhances the logical clarity of the program. Helps to avoid repeated programming across programs. All of these Helps to avoid repeating a set of statements many times. Makes the debugging task easier. Enhances the logical clarity of the program. Helps to avoid repeated programming across programs. All of these Helps to avoid repeating a set of statements many times. ANSWER DOWNLOAD EXAMIANS APP