C Language MCQ - English
Which of the following is not logical operator?
&
&&
||
!
Answer : A
View More Related Question
1) What is the output of this C code?
#include <stdio.h>
int main()
{
int i = -3;
int k = i % 2;
printf("%d\n", k);
}
2) Which bitwise operator is suitable for checking whether a particular bit is on or off?
3) What is the output of this C code?
#include <stdio.h>
void main()
{
unsigned int x = -5;
printf("%d", x);
}
4) Which bitwise operator is suitable for turning on a particular bit in a number?
5) The operator && in 'C' language is a (n):