C Programming Which of following is not a valid name for a C variable? Exam_veda Examians Exam veda None of these Both A and B Exam_veda Examians Exam veda None of these Both A and B ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the maximum number of dimensions an array in C may have? 2 50 20 Theoratically no limit. The only practical limits are memory size and compilers. 8 2 50 20 Theoratically no limit. The only practical limits are memory size and compilers. 8 ANSWER DOWNLOAD EXAMIANS APP
C Programming Who is father of C Language? Gosling Bjarne Stroustrup James Dennis Ritchie F. Codd Dr. Gosling Bjarne Stroustrup James Dennis Ritchie F. Codd Dr. ANSWER DOWNLOAD EXAMIANS APP
C Programming When a function is recursively called all the automatic variables are stored in a .......... Linked list Register Array Stack Queue Linked list Register Array Stack Queue ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program if the array begins at 65472 and each integer occupies 2 bytes?#includevoid main(){ int a[3][4] = {1, 2, 3, 4, 4, 3, 2, 1, 7, 8, 9, 0}; printf("%u, %u", a+1, &a+1);} None of these 65480, 65488 65474, 65476 65480, 65496 65474, 65488 None of these 65480, 65488 65474, 65476 65480, 65496 65474, 65488 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following statements should be used to obtain a remainder after dividing 3.14 by 2.1 ? rem = 3.14 % 2.1; rem = fmod(3.14, 2.1); Remainder cannot be obtain in floating point division. rem = modf(3.14, 2.1); rem = 3.14 % 2.1; rem = fmod(3.14, 2.1); Remainder cannot be obtain in floating point division. rem = modf(3.14, 2.1); ANSWER DOWNLOAD EXAMIANS APP