What is the value of y in the following code?
x=7;y=0;
if(x=6)
y=7;
else
y=1;
Answer Posted / shruti
y = 7..
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
Does c have enums?
What is the sizeof () a pointer?
pierrot's divisor program using c or c++ code
What is this infamous null pointer, anyway?
What type is sizeof?
Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.
Why does not c have an exponentiation operator?
#include
What are the 3 types of structures?
What is 1f in c?
what is a constant pointer in C
What is a const pointer?
What is nested structure in c?
Describe how arrays can be passed to a user defined function
Is null always equal to 0(zero)?