C Programming In which stage the following code#includegets replaced by the contents of the file stdio.h During Execution During linking During Preprocessing During Editing None of these During Execution During linking During Preprocessing During Editing None of these 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
C Programming Which of following is not a valid name for a C variable? Examians Exam_veda Exam veda None of these Both A and B Examians Exam_veda Exam veda None of these Both A and B ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#includevoid main(){ float arr[] = {12.4, 2.3, 4.5, 6.7}; printf("%d", sizeof(arr)/sizeof(arr[0]));} None of these 6 7 5 4 None of these 6 7 5 4 ANSWER DOWNLOAD EXAMIANS APP
C Programming The declarationint (*p) [5];means None of these. p is a pointer to a 5 elements integer array. p is one dimensional array of size 5, of pointers to integers. The same as int *p[ None of these. p is a pointer to a 5 elements integer array. p is one dimensional array of size 5, of pointers to integers. The same as int *p[ ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be printed after execution of the following code?void main(){ int arr[10] = {1,2,3,4,5}; printf("%d", arr[5]);} Garbage Value None of these 5 6 0 Garbage Value None of these 5 6 0 ANSWER DOWNLOAD EXAMIANS APP