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
What is the use of a semicolon (;) at the end of every program statement?
What is the most efficient way to store flag values?
how do you execute a c program in unix.
Why do we need arrays in c?
What is function prototype in c language?
Function calling procedures? and their differences? Why should one go for Call by Reference?
Can you explain what keyboard debouncing is, and where and why we us it? please give some examples
What is function pointer c?
What is a union?
Explain how can I make sure that my program is the only one accessing a file?
How can you return multiple values from a function?
In a switch statement, what will happen if a break statement is omitted?
c language supports bitwise operations, why a) 'c' language is system oriented b) 'c' language is problem oriented c) 'c' language is middle level language d) all the above
What kind of structure is a house?
a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion