C Language MCQ - English
In mathematics and computer programming, which is the correct order of mathemati
Home | Discussion ForumIn mathematics and computer programming, which is the correct order of mathematical operators ?
Answer : B
View More Related Question
1) 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;
}
2) IF I=6, and J=++I, then the value of J and I will be:
3) What is the output of this C code?
#include <stdio.h>
int main()
{
int i = -3;
int k = i % 2;
printf("%d\n", k);
}
4) What is the output of this C code?
#include <stdio.h>
void main()
{
int y = 3;
int x = 5 % 2 * 3 / 2;
printf("Value of x is %d", x);
}
5) The operator && in 'C' language is a (n):