C Programming Which of following is not a valid name for a C variable? Exam_veda Examians Both A and B Exam veda None of these Exam_veda Examians Both A and B Exam veda None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=1, j=2; switch(i) { case 1: printf("GOOD"); break; case j: printf("BAD"); break; }} GOOD GOOD BAD Compiler Error None of These GOOD GOOD BAD Compiler Error None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming Standard ANSI C recognizes ______ number of keywords? 32 36 24 40 30 32 36 24 40 30 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char not; not = !2; printf("%d", not);} 0 Garbage Value None of These 2 0 Garbage Value None of These 2 ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the base data type of a pointer variable by which the memory would be allocated to it? int float No data type Depends upon the type of the variable to which it is pointing. unsigned int int float No data type Depends upon the type of the variable to which it is pointing. unsigned int ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following is correct way to define the function fun() in the below program?#includevoid main(){ int a[3][4]; fun(a);} void fun(int *p[3][4]){} void fun(int *p[4]){} void fun(int p[][4]){} None of these void fun(int *p[][4]){} void fun(int *p[3][4]){} void fun(int *p[4]){} void fun(int p[][4]){} None of these void fun(int *p[][4]){} ANSWER DOWNLOAD EXAMIANS APP