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

Answers were Sorted based on User's Feedback



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

Answer / veeramuthu k

'=' in c is the assignment opperator.whereas '==' is the
logical equality operator.

Is This Answer Correct ?    35 Yes 0 No

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

Answer / priyanka kokil

= is the assignment operator while == is equality operator

Is This Answer Correct ?    20 Yes 0 No

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

Answer / d.sreenu

= is assignment operator & == is equality operator in C
= operator is used to assign a value to the variable
== operator is used to compare two variables.

Is This Answer Correct ?    17 Yes 0 No

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

Answer / swapna

= is used for assigning the value to a variable
for example
int a=10;
if a=5
printf("%d",a);
else
printf("%d",a);

output:5
in this program a value is assigned to 5 and 5 is printed.

whereas
== is used to check the value of the variable
for example
int a=10;
if a==5
printf("%d",++a);
else
printf("%d",a);

output:10

in this value of a is checked with 10 .If it is equal if
stmt is true and a is incrementd and printed.
If it is not equal a value is printed.

Is This Answer Correct ?    14 Yes 0 No

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

Answer / indian

I NEED MORE....

Is This Answer Correct ?    0 Yes 7 No

Post New Answer

More VLSI Interview Questions

Given a circuit and asked to tell the output voltages of that circuit?

1 Answers   Intel, Omega Healthcare,


What are the Factors affecting Power Consumption on a chip?

0 Answers   Intel,


What is polymorphism? (C++)

2 Answers   Intel,


Explain what is slack?

0 Answers  


what is the difference between the TTL chips and CMOS chips?

0 Answers  






What types of I/O have you designed? What were their size? Speed? Configuration? Voltage requirements?

1 Answers   Intel,


Different ways of implementing a comparator?

1 Answers   Intel,


Explain the operation of a 6T-SRAM cell?

0 Answers   Intel,


Explain the usage of the shared SPI bus?

1 Answers  


Differences between functions and Procedures in VHDL?

5 Answers   Intel,


Explain the difference between write through and write back cache.

2 Answers   Intel,


If the current through the poly is 20nA and the contact can take a max current of 10nA how would u overcome the problem?

0 Answers   Intel,


Categories