C Programming Which operator from the following has the lowest priority? Division operator Conditional operator Comma operator Unary-operator Assignment operator Division operator Conditional operator Comma operator Unary-operator Assignment operator ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of given program?#includevoid main(){ int i=1, j=-1; if((printf("%d", i)) < (printf("%d", j))) printf("%d", i); else printf("%d", j);} -1 complier error 1 -1 1 1 -1 -1 1 -1 complier error 1 -1 1 1 -1 -1 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i = -1; +i; printf("i = %d, +i = %d", i, +i);} None of These i = -1, +i = 1 i = 1, +i = 1 i = -1, +i = -1 None of These i = -1, +i = 1 i = 1, +i = 1 i = -1, +i = -1 ANSWER DOWNLOAD EXAMIANS APP
C Programming A C variable cannot start with Both of the above A number A special symbol other than underscore An alphabet Both of the above A number A special symbol other than underscore An alphabet ANSWER DOWNLOAD EXAMIANS APP
C Programming Functions have .......... Function scope Block scope File scope No scope at all Local scope Function scope Block scope File scope No scope at all Local scope ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the given program?#includevoid main(){float num=5.6;switch(num){case 5:printf("5");case 6:printf("6");default : printf("0");break;}printf("%d", num);} 6 5.600000 Complier error 0 5.600000 5 5.600000 6 5.600000 Complier error 0 5.600000 5 5.600000 ANSWER DOWNLOAD EXAMIANS APP