C Programming Which of following is not a valid name for a C variable? None of these Examians Exam_veda Both A and B Exam veda None of these Examians Exam_veda Both A and B Exam veda ANSWER DOWNLOAD EXAMIANS APP
C Programming Functions have .......... Block scope No scope at all Local scope File scope Function scope Block scope No scope at all Local scope File scope Function scope ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the output of the following statements?int i = 0;printf("%d %d", i, i++); 1 1 1 0 0 0 0 1 None of these 1 1 1 0 0 0 0 1 None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming The recursive functions are executed in a ........... First In First Out order Random order Last In First Out order Parallel order Iterative order First In First Out order Random order Last In First Out order Parallel order Iterative order ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the following code's output if choice = 'R'?switch(choice){ case 'R' : printf("RED"); case 'W' : printf("WHITE"); case 'B' : printf("BLUE"); default : printf("ERROR");break;} RED RED ERROR RED WHITE BLUE ERROR ERROR RED WHITE BLUE RED RED ERROR RED WHITE BLUE ERROR ERROR RED WHITE BLUE 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);} 13 12 11 14 Compilation error 13 12 11 14 Compilation error ANSWER DOWNLOAD EXAMIANS APP