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) Consider the following code fragment: int a,c; c=2;
What will be the value of "a" after the above lines are executed?
a=(c+ =5)*2
2) Which among the following are the fundamental arithmetic operators, ie, performing the desired operation can be done using that operator only?
3) A typecast is used to:
View Answer
4) What is the output of this C code?
#include <stdio.h>
void main()
{
int x = 0;
if (x = 0)
printf("Its zero\n");
else
printf("Its not zero\n");
}
5) If the following variables are set to the values as shown below, then what will be the value of the following expression? answer=2;
marks=10;
!((answer<5)&&(marks>2))