read the folllowing code
# define MAX 100
# define MIN 100
....
....
if(x>MAX)
x=1;
else if(x<MIN)
x=-1;
x=50;
if the initial value of x=200,what is the vlaue after
executing this code?
a.200
b.1
c.-1
d.50
Answer Posted / fazlur rahaman naik
the right answer is d.
| Is This Answer Correct ? | 14 Yes | 6 No |
Post New Answer View All Answers
Give the rules for variable declaration?
code for replace tabs with equivalent number of blanks
What is the purpose of the preprocessor directive error?
Write a program to input the price of 1 burger and the number of burgers eaten by a group of friends .print the total amount to be paid by the group?
What is the use of bit field?
write a c program in such a way that if we enter the today date the output should be next day's date.
Write a program to find factorial of a number using recursive function.
What does s c mean on snapchat?
What is the difference between volatile and const volatile?
What the different types of arrays in c?
Tell me about low level programming languages.
What are the different types of C instructions?
What is signed and unsigned?
Why do we use int main instead of void main in c?
What is an operator?