What is the difference between = and == in C?
Answer Posted / glibwaresoftsolutions
=: 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 the purpose of templates in c++?
How do you instruct your compiler to print the contents of the intermediate file showing the effects of the preprocessor?
What is the difference between ++ count and count ++?
Is it possible for a member function to use delete this?
Define Virtual function in C++.
How many characters are recognized by ANSI C++?
Describe new operator and delete operator?
Briefly describe a B+ tree. What is bulk loading in it?
What is the difference between the compiler and the preprocessor?
What are register variables?
Can I run c program in turbo c++?
What is c++ prototype?
If I is an integer variable, which is faster ++i or i++?
Why do we use templates?
What is isdigit c++?