Fixed a simple typo. (#24169)

This commit is contained in:
LT
2018-12-07 01:59:12 -07:00
committed by Manish Giri
parent d0758ab398
commit 05eb597ca0

View File

@ -4,7 +4,8 @@ title: Operators
# Operators in C
## 1. Arithmetic Operators
- `+` Adds to operands (values)
- `+` Adds two operands (values)
```C
int a = 6;
int c = a + 1; // c = 7