C Programming Which operator from the following has the lowest priority? Conditional operator Comma operator Unary-operator Division operator Assignment operator Conditional operator Comma operator Unary-operator Division operator Assignment operator ANSWER DOWNLOAD EXAMIANS APP
C Programming What will happen after compiling and running following code?main(){ printf("%p", main); } Some address will be printed. Will make an infinite loop. Error None of these. Some address will be printed. Will make an infinite loop. Error None of these. ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:#include void main(){ char *p = NULL; char *q = 0; if(p) printf(" p "); else printf("nullp"); if(q) printf("q"); else printf(" nullq");} x nullq where x can be p or nullp depending on the value of NULL p q nullp nullq Depends on the compiler x nullq where x can be p or nullp depending on the value of NULL p q nullp nullq Depends on the compiler 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 is the return value of the following statement if it is placed in C program? strcmp("ABC", "ABC"); 0 Compilation Error -1 33 1 0 Compilation Error -1 33 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of given program?#includevoid main(){int a=1;if("%d=hello", a);} no error no output complier error 0 1 no error no output complier error 0 1 ANSWER DOWNLOAD EXAMIANS APP