C Programming The type of the controlling expression of a switch statement cannot be of the type ........ short float long int char short float long int char ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following function is used to find the first occurrence of a given string in another string? strrchr() strnset() strstr() strchr() None of these strrchr() strnset() strstr() strchr() None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output of the following program code.#includevoid main(){ int a, b=7; a = b<4 ? b<<1 : ++b>4 ? 7>>1 : a; printf("%d %d", a, b);} 3 8 7 3 8 3 None of these 3 7 3 8 7 3 8 3 None of these 3 7 ANSWER DOWNLOAD EXAMIANS APP
C Programming Use of functions Helps to avoid repeating a set of statements many times. Makes the debugging task easier. All of these Enhances the logical clarity of the program. Helps to avoid repeated programming across programs. Helps to avoid repeating a set of statements many times. Makes the debugging task easier. All of these Enhances the logical clarity of the program. Helps to avoid repeated programming across programs. ANSWER DOWNLOAD EXAMIANS APP
C Programming short testarray[4][3] = { {1}, {2,3}, {4,5,6}};printf("%d", sizeof(testarray));Assuming a short is two bytes long, what will be printed by the above code? It will not compile because not enough initializers are given 24 12 6 7 It will not compile because not enough initializers are given 24 12 6 7 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following operator takes only integer operands? + % * None of these / + % * None of these / ANSWER DOWNLOAD EXAMIANS APP