C Operators Questions and Answers
Practice ModeShowing 10 of 122 questions
Q1
Whcih is most appropriate one ?
Answer: Option A
Q2
Bitwise operators are applicable only on
Answer: Option B
Q3
Which operator enjoys the lowest priority from the group of operators ?
Answer: Option C
Q4
which operator is used both as an operators and a keyword?
Answer: Option C
Q5
How to find generic root of a number ?
Answer: Option B
Q6
Find the output.
void main ( )
{
int a=8, x;
x=++a++a+++a;
printf("%d, %d, x, a);
}
Answer: Option D
Q7
x%y is equal to
Answer: Option B
Q8
Which of the following operator has left to right associatively?
Answer: Option B
Q9
Find the output
void main ( )
{
int x,y;
x=10;
y=sizeof(++x);
printf("x=%d y=%d", x,y);
}
Answer: Option A
Q10
Find the output
void main ( )
{
int a,b,c=32;
if (a==b==c)
printf("dealhi challo");
else
printf("d or die");
}
Answer: Option B