We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48c5895 commit 726b27aCopy full SHA for 726b27a
cpp/examples/and_keyword.cpp
@@ -0,0 +1,12 @@
1
+#include <iostream.h>
2
+
3
+using namespace std;
4
5
+int main()
6
+{
7
+ if (true and true) {
8
+ cout << "Hello World!";
9
+ }
10
+ return 0;
11
+}
12
cpp/examples/not_keyword.cpp
+ if (not false) {
cpp/examples/or_keyword.cpp
+ if (false or true) {
0 commit comments