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 WHITE BLUE ERROR RED ERROR RED ERROR RED WHITE BLUE RED WHITE BLUE ERROR RED ERROR RED ERROR RED WHITE BLUE ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=5; printf("%d%d%d%d%d", i++, i--, ++i, --i, i);} 54554 45545 55445 54544 54554 45545 55445 54544 ANSWER DOWNLOAD EXAMIANS APP
C Programming Standard ANSI C recognizes ______ number of keywords? 30 36 24 32 40 30 36 24 32 40 ANSWER DOWNLOAD EXAMIANS APP
C Programming C was primarily developed as System programming language Data processing language General purpose language None of these System programming language Data processing language General purpose language None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming Which one of the following is not a reserved keyword for C? case main default auto register case main default auto register ANSWER DOWNLOAD EXAMIANS APP
C Programming An array elements are always stored in ________ memory locations. Random None of these Sequential Sequential and Random Random None of these Sequential Sequential and Random ANSWER DOWNLOAD EXAMIANS APP