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 are the uses of static class data?
Is c++ the hardest programming language?
What is the standard template library (stl)?
What is the use of seekg in c++?
How can you say that a template is better than a base class?
If dog is a friend of boy, and terrier derives from dog, is terrier a friend of boy?
What is private, public and protected inheritance?
How do we implement inheritance in c++?
What is the last index number in an array of 100 characters a) 100 b) 99 c) 101
Why c++ is better than c language?
Can you be able to identify between straight- through and cross- over cable wiring? And in what case do you use straight- through and cross-over?
Is c++ pass by reference or value?
What is namespace std; and what is consists of?
Write about an iterator class?
If dog is a friend of boy, is boy a friend of dog?