What is the difference between = and == in C?

Answer Posted / mallika

= is used to assign the values to the variables.

Eg:- int a=5,b;
b=a;

== is used for comparison purpose.

Eg:- if(a==b)
continue;

Is This Answer Correct ?    31 Yes 6 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is capacity in vector in c++?

542


What is function overloading in C++?

721


Explain what are mutator methods in c++?

566


In which header file does one find isalpha() a) conio.h b) stdio.h c) ctype.h

671


How do you print a string on the printer?

571






What are proxy objects in c++?

634


Give 10 points of differences between C & C++.

614


What flag means?

520


What is a modifier in c++?

625


How does work in c++?

590


Is there finally in c++?

610


Write a program which is required to process the time of a clock in hours and minutes, entered from the keyboard. With this program, there are two requirements for any data entered by a user: 1. The data must be of the correct type (in this case, two ints). 2. The data must be in the correct range: this means that, for the minutes, negative numbers and any number above 59 must be rejected; for the hours, negative numbers and any number above 23 must be rejected. Output error message for invalid data input. Output the time one and a half hour after the time input. i.e. Hour: 22 Min: 32 One and a half hour after 22:32 is 00:02

1501


Specify different types of decision control statements?

351


How can we read/write Structures from/to data files?

615


Explain how would you handle a situation where you cannot call the destructor of a local explicitly?

535