We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2577c53 commit 5893eb5Copy full SHA for 5893eb5
cpp.md
@@ -133,6 +133,24 @@ s.length();
133
| Ternary Operator| ? : |
134
| sizeof operator| sizeof() |
135
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
154
## Conditional Statements
155
156
### 1. If
0 commit comments