Skip to content

Commit 5893eb5

Browse files
Adding cpp keywords in cpp.md
1 parent 2577c53 commit 5893eb5

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

cpp.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,24 @@ s.length();
133133
| Ternary Operator| ? : |
134134
| sizeof operator| sizeof() |
135135

136+
137+
## Keywords(reserved words)
138+
139+
```c
140+
auto double int struct
141+
break else long switch
142+
case enum register typedef
143+
char extern return union
144+
const float short unsigned
145+
continue for signed void
146+
default goto sizeof volatile
147+
do if static while
148+
try catch throw asm
149+
operator new template this
150+
public private protected inline
151+
```
152+
153+
136154
## Conditional Statements
137155

138156
### 1. If

0 commit comments

Comments
 (0)