described assignment operator (#32080)

described use of asssignment operator in c program.
This commit is contained in:
Shubhamjainagrawal
2019-05-20 20:35:18 +05:30
committed by Christopher McCormack
parent 1be1f430b3
commit b55c50c6cf

View File

@ -163,7 +163,7 @@ int main()
RESULT = 00110
```
## 5. Assignment Operators
## 5. Assignment Operators: Assigns a value to given variable.
- `=`
```C
int a = 7; // 'a' is going to be equal to 7