Posts

Showing posts with the label Assignment operator

Operators in C Language | Part-2

Assignment operator = operator is called assignment operator. It is used to move the value or expression result in a variable. Assignment operator are evaluated from right to left order. Example of assignment: a = b = 5 , In this example the 5 is assignment in b then b's value is moved to a. a = b + 5 , Assignment operator have the lowest precedence so all other operator are evaluated first and then result is moved to the variable. 5 = a , This is an error, because in this example we are trying to move the value of variable into constant and constant can't be changed.The same error will be prompted if you are try the expression 6 + b = a . Compound assignment +=, -=, *=, /=, %= are called compound assignment operator. It combine the Arithmetic as well as assignment simultaneously. Compound Assignment Equivalent Expression a += 5 a = a + 5 a -= 5 a = a - 5 a *= 5 a = a * 5 a /= 5 a = a / 5 a %= 5 a = a

Popular posts from this blog

String in golang

Inline V/S Block Level Element

Arrays in C Language

Data Types in Go language

Printing in C programming

Variable Naming & Scope of Variable

Escape Sequence | Formatted Printing | Interview Questions

Floating point Data types in Go lang

Overview of Go lang

Literals in Java