What is the value of y in the following code?
x=7;y=0;
if(x=6)
y=7;
else
y=1;
Answer Posted / vikraman85
compile time err wil occur..
Have 2 use == opr..
| Is This Answer Correct ? | 3 Yes | 11 No |
Post New Answer View All Answers
Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.
What are register variables? What are the advantage of using register variables?
Why C language is a procedural language?
Explain how does flowchart help in writing a program?
How do you determine whether to use a stream function or a low-level function?
How can I read in an object file and jump to locations in it?
What is context in c?
How to declare pointer variables?
Where can I get an ansi-compatible lint?
What is volatile, register definition in C
What is this pointer in c plus plus?
What are extern variables in c?
What is the collection of communication lines and routers called?
Is register a keyword in c?