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 are the two types of comments, and how do they differ?
What is new in c++?
How java is different from c and c++?
Is c++ a software?
What is the difference between a type-specific template friend class and a general template friend class?
How much is c++ certification?
Can char be a number c++?
What is & in c++ function?
What is a catch statement?
Why null pointer is used?
write a corrected statement in c++ so that the statement will work properly. x = y = z + 3a;
How do you clear a map in c++?
How to defines the function in c++?
What is the difference between while and do while loop? Explain with examples.
What are the three forms of cin.get() and what are their differences?