What is the difference between = and == in C?
Answer Posted / idofsaikat9
'=' assigns a value to a variable whereas '==' checks whether two values are equal or not
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What are guid?
What is anonymous object in c++?
What are c++ stream classes?
What is an undefined reference/unresolved external symbol error and how do I fix it?
On throwing an exception by the animal constructor in p = new animalq, can memory leak occur?
int age=35; if(age>80) {Console.WriteLine("Boy you are old");} else {Console.WrieLine("That is a good age");}
Incase of a function declaration, what is extern means?
what is the use of void main() in C++ language?
What is the use of setprecision in c++?
What is a base class?
How do I start a c++ project?
What is #include iostream in c++?
What is conditions when using boolean operators?
What are the advantages of using pointers in a program?
Is it legal in c++ to overload operator++ so that it decrements a value in your class?