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
Explain how do you determine whether to use a stream function or a low-level function?
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
Is main is user defined function?
What is array of structure in c?
How to throw some light on the b tree?
What is cohesion and coupling in c?
What is #line used for?
Why does notstrcat(string, "!");Work?
What is typedef struct in c?
Describe the header file and its usage in c programming?
How do you search data in a data file using random access method?
What are the usage of pointer in c?
What is structure in c definition?
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function
What is a 'null pointer assignment' error?