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

Answers were Sorted based on User's Feedback



read the folllowing code # define MAX 100 # define MIN 100 .... .... if(x>MAX..

Answer / divakar

50. irrespective of the if and else if at last ur assigning
x=50

Is This Answer Correct ?    24 Yes 2 No

read the folllowing code # define MAX 100 # define MIN 100 .... .... if(x>MAX..

Answer / fazlur rahaman naik

the right answer is d.

Is This Answer Correct ?    14 Yes 6 No

read the folllowing code # define MAX 100 # define MIN 100 .... .... if(x>MAX..

Answer / nila

the right answer is x=50,why?.if condition is true
and then after checking if condition x is assigned a value
of 50.so the final answer is 50.

Is This Answer Correct ?    5 Yes 0 No

read the folllowing code # define MAX 100 # define MIN 100 .... .... if(x>MAX..

Answer / manishsoni

it will print 50 because:
if(200>100)//condition true;
then x=1
and show in memory like this
___ ____
| | | |
x | 1 | then replace x| 50 |
|___| with |____|
100 100
so print the 50 value.

Is This Answer Correct ?    3 Yes 0 No

Post New Answer

More C Interview Questions

how many keywords do C compile?

7 Answers   Microsoft, Practical Viva Questions,


how to find sum of 5 digits in C?

4 Answers  


Write a C program to fill a rectangle using window scrolling

1 Answers  


Explain how many levels deep can include files be nested?

0 Answers  


can we declare a function in side the structure?

2 Answers   HCL,






What is page thrashing?

0 Answers  


Explain bitwise shift operators?

0 Answers  


write a c program to find reminder and quotient if one number is divided by other.to code this program don't use more than 2 variables

2 Answers   TCS,


Find if a number is power of two or not?

1 Answers  


What is pointer to pointer in c language?

0 Answers  


what is use of loop?

10 Answers   Infosys,


What does != Mean in c?

0 Answers  


Categories