Loading...

Variable Scope

While writing code we need various variables. Each variable has its own boundaries where they are accessible. Variables does not hold their values outside their boundaries. These boundaries are known [ … ]

Escape Sequence

The list of backslash character constant or escape sequence is as in the below table:Constant      Meaning‘\a’ or “\a”      Audible bell(Beep)‘\b’ or “\b”     Backspace (it moves [ … ]

Too many connections error

If clients face Too many connections errors when attempting to connect to the mysql server, all available connections are in use by others.The number of connections which we have configured [ … ]

Constants

Constants refer to fixed values that the program may not alter. Constants can be of any of the basic data type. The way each constant is represented depends upon its [ … ]

Identifiers

A C++ identifier is a name used to identify a variable, function, class, module, or any other user-defined item. An identifier starts with the letters A to Z or  a [ … ]

Keywords

The Keyword is a predefined or reserved word in the C++ library with a fixed meaning and is used to perform an internal operation. C++ language supports more than 64 [ … ]