What is the difference between = and == in C?
Answer Posted / nila
= this is assignment operator.it is used to assign a
variable to variable and assign a value to variable.
== this is comparison iperator.it is used to compare any
two variable and values.
| Is This Answer Correct ? | 16 Yes | 2 No |
Post New Answer View All Answers
Is c++ the best programming language?
Which c++ operator cannot overload?
What data structure is fastest, on average, for retrieving data: a) Binary Tree b) Hash Table c) Stack
Can a class be static in c++?
What is insertion sorting?
Show the declaration for a pointer to function returning long and taking an integer parameter.
What is the difference between method overloading and method overriding in c++?
What is a literal in c++?
Difference between pass by value and pass by reference?
Difference between pointer to constant and constant pointer to a constant. Give example.
What is the difference between passing by reference and passing a reference?
Is c the same as c++?
Explain the differences between list x; & list x();.
What is ifstream c++?
What is a lambda function c++?