C Programming The recursive functions are executed in a ........... Random order Iterative order First In First Out order Last In First Out order Parallel order Random order Iterative order First In First Out order Last In First Out order Parallel order ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following function is more appropriate for reading in a multi-word string? printf() None of these puts() gets() scanf() printf() None of these puts() gets() scanf() ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the right choice, if the following loop is implemented?void main(){ int num = 0; do{ --num; printf("%d", num); }while( ++num >= 0 );} A run time error will be generated. There will be a compilation error reported. Prints the value of 0 one time only. The program will not enter into the loop. The loop will run infinitely many times. A run time error will be generated. There will be a compilation error reported. Prints the value of 0 one time only. The program will not enter into the loop. The loop will run infinitely many times. 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);} 11 12 13 14 Compilation error 11 12 13 14 Compilation error ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the correct value to return to the operating system upon the successful completion of a program? 2 -1 1 Program do no return a value. 2 -1 1 Program do no return a value. ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the output of the following statements?int i = 0;printf("%d %d", i, i++); None of these 1 1 1 0 0 1 0 0 None of these 1 1 1 0 0 1 0 0 ANSWER DOWNLOAD EXAMIANS APP