Ques 1 Operator
Identify the operator (&&) ________
Ques 2 Operator
What is the output of the following code ?
int main()
{
int x=2,y=5;
(x&y)?printf("TRUE"):printf("FALSE");
(x&&y)?printf("TRUE"):printf("FALSE");
return 0;
}
Ques 3 Operator
An operator consists _____
Ques 4 Operator
What is the output of the following code ?
int main()
{
int x=21;
printf("%d",x<<1);
printf("%d",x>>1);
return 0;
}
Ques 5 Operator
What will be the output of the following C code___
int main()
{
int x=2;
(x&1)?printf("Odd"):printf("Even");
return 0;
}