-AJan 28, 20201 min readC++ Modifier Types C++ allows the char, int, and double data types to have modifiers preceding them. A modifier is used to alter the meaning of the base...
-AJan 28, 20203 min readC++ Constants/LiteralsConstants refer to fixed values that the program may not alter and they are called literals. Constants can be of any of the basic data...
-AJan 28, 20202 min readVariable Scope in C++A scope is a region of the program and broadly speaking there are three places, where variables can be declared − Inside a function or a...
-AJan 28, 20202 min readVariable Declaration in C++ A variable declaration provides assurance to the compiler that there is one variable existing with the given type and name so that...