Content deleted Content added
No edit summary |
bold formatting title and added stub tag using AWB |
||
Line 1:
'''Assignment statement''' is a [[statement]] where a destination is assigned a specific value , mostly copied from a source , where the source can be either a [[variable]] , a [[constant]] or any other .
[[C++]] Example:
Line 6:
y = 5 ; //y is assigned a value of a constant , 5
x = y ; //x is assigned a value of a variable , y
{{stub}}
|