C Language MCQ - English
In which numbering system can the binary number 1011011111000101 be easily conve
Home | Discussion ForumIn which numbering system can the binary number 1011011111000101 be easily converted to?
Answer : B
View More Related Question
1) What is the output of this C code?
#include <stdio.h>
int main()
{
int i = -5;
i = i / 3;
printf("%d
", i);
return 0;
}
2) What is the output of this C code?
#include <stdio.h>
int main()
{
int i = 3;
int l = i / -2;
int k = i % -2;
printf("%d %d\n", l, k);
return 0;
}
3) What is the output of this C code?
#include <stdio.h>
void main()
{
char a = 'a';
int x = (a % 10)++;
printf("%d\n", x);
}
4) Pick up the odd one out from the following
5) Which bitwise operator is suitable for turning off a particular bit in a number?