+ 1
What are assignment operators
eheheh
4 ответов
+ 7
with assigment operator you give value to some variable like: int a = 5, where = is assigment operator
+ 2
= is a assignment operator.It is used to assign values to the variables.
for eg:
int x=2;
0
with the (=) operator we can assign a value to a variable. like x = 5980; in program we assign a value to x and now whenever we need the tedious value 5980 instead the value we use variable x that contains the value.
0
thanks everyone