What is the difference between = and == in C?
Answer Posted / kiranmai
= is used to assign the value it is called assignment operator where as
== is used to compare whether the left side and right side values are equal or not
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What are the syntactic rules to be avoid ambiguity in multiple inheritance?
How much do coding jobs pay?
What are member functions used in c++?
What do the header files usually contains?
How a macro differs from a template?
What are the uses of pointers?
what is the use of void main() in C++ language?
Explain what happens when a pointer is deleted twice?
how to access grid view row?
What are namespaces in c++?
Explain static and dynamic memory allocation with an example each.
What is the standard template library (stl)?
List down the guideline that should be followed while using friend function.
When should you use global variables?
int age=35; if(age>80) {Console.WriteLine("Boy you are old");} else {Console.WrieLine("That is a good age");}