what is a shorthand operator?
Answers
Answered by
10
we can use shorthand notations for not writing the whole statement
like
a=a+1;
we can write it as
a+=1;
like
a=a+1;
we can write it as
a+=1;
Answered by
11
Shorthand assignment operator is implemented to assign an expression to a variable in a shorter way.
HOpe it helps
MARK IT BRAINLIEST IF IT DOES
HOpe it helps
MARK IT BRAINLIEST IF IT DOES
Similar questions