C Programming Consider the following type definition.typedef char x[10];x myArray[5];What will sizeof(myArray) be ? (Assume one character occupies 1 byte) 50 None of these 30 15 10 50 None of these 30 15 10 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following statements are correct about an array?1. The array int num[26]; can store 26 elements.2. The expression num[1] designates the very first element in the array.3. It is necessary to initialize the array at the time of declaration.4. The declaration num[SIZE] is allowed if SIZE is a macro. None of these 2, 3 2, 4 1 1, 4 None of these 2, 3 2, 4 1 1, 4 ANSWER DOWNLOAD EXAMIANS APP
C Programming The statement int **a; is illegal is syntactically and semantically correct is legal but meaningless None of these. is illegal is syntactically and semantically correct is legal but meaningless None of these. ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following correctly accesses the seventh element stored in arr, an array with 100 elements? arr[7] arr[6] arr{6} None of these arr{7} arr[7] arr[6] arr{6} None of these arr{7} ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i = abc(10); printf("%d", --i);}int abc(int i){ return(i++);} 9 10 None of These 11 9 10 None of These 11 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following is the correct way of declaring a float pointer: float *ptr; *float ptr; float ptr; None of these float *ptr; *float ptr; float ptr; None of these ANSWER DOWNLOAD EXAMIANS APP