What is the difference between = and == in C?
Answer Posted / hr@tgksolutions.com
=: Assignment operator (e.g., x = 10).
==: Equality comparison operator (e.g., if (x == 10)).
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is anonymous object in c++?
Difference between overloading vs. Overriding
Is c++ a pure oop language?
I want explanation for this assignment: how to connect mysql database using c/c++,please explain this detailly?
Write about the scope resolution operator?
What is the rule of three?
What is one dimensional array in c++?
Tell me can a pure virtual function have an implementation?
what you know about c++?
Write about the various sections of the executable image?
. If employee B is the boss of A and C is the boss of B and D is the boss of C and E is the boss of D. Then write a program using the Database such that if an employee name is Asked to Display it also display his bosses with his name. For eg. If C is displayed it should also display D and E with C?
What is expression parser in c++
Explain how the virtual base class is different from the conventional base classes of the opps.
Do the names of parameters have to agree in the prototype, definition, and call to the function?
What do you mean by volatile and mutable keywords used in c++?