C Programming The type of the controlling expression of a switch statement cannot be of the type ........ int char short float long int char short float long ANSWER DOWNLOAD EXAMIANS APP
C Programming An array elements are always stored in ________ memory locations. None of these Random Sequential and Random Sequential None of these Random Sequential and Random Sequential ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i = abc(10); printf("%d", --i);}int abc(int i){ return(i++);} None of These 10 11 9 None of These 10 11 9 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following correctly accesses the seventh element stored in arr, an array with 100 elements? arr[6] arr{7} None of these arr[7] arr{6} arr[6] arr{7} None of these arr[7] arr{6} 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? 7 24 6 12 It will not compile because not enough initializers are given 7 24 6 12 It will not compile because not enough initializers are given ANSWER DOWNLOAD EXAMIANS APP
C Programming In which stage the following code#includegets replaced by the contents of the file stdio.h None of these During Editing During Preprocessing During linking During Execution None of these During Editing During Preprocessing During linking During Execution ANSWER DOWNLOAD EXAMIANS APP