From a581371183509f4a53c69e5060468c9516fa93ca Mon Sep 17 00:00:00 2001 From: royalpinto007 Date: Mon, 17 Oct 2022 19:10:33 +0530 Subject: [PATCH] Added few more integer literals --- cpp.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cpp.md b/cpp.md index 8e76d60..530dfdc 100644 --- a/cpp.md +++ b/cpp.md @@ -109,6 +109,10 @@ string string1.append(string2); // It is used to concatenate two strings(string1 |Integer Literal- decimal|255| |Integer Literal- octal|0377| |Integer Literal- hexadecimal|0xFF| +|Integer Literal- int|30| +|Integer Literal- unsigned int|30u| +|Integer Literal- long|30l| +|Integer Literal- unsigned long|30ul| |Float point Literal|53.0f, 79.02| |Character literals| 'a', '1'| |String literals| "OneCompiler", "Foo"|