Facebook Twitter Instagram
Posts in Category: C++

Tokens

A source programme may consist different type of elements of syntax. These elements could be keywords, variables, functions, constants etc. These ...

Posted on: 2024-10-08 04:16:27

Identifiers

In real life we use different names to identify things, same as we use identifiers to know make names for different objects, variables, functions....

Posted on: 2024-10-08 04:18:10

Data Types in C++

While writing source code in any language, you need to use several variables to store information. Variables are reserved memory locations to stor...

Posted on: 2024-10-08 04:19:31

User-Defined Data Types

C++ is a flexible language, it allows user to define their own data types. User can do this with a keyword typedef. Format to decla...

Posted on: 2024-10-08 04:20:22

Overflow and Underflow

verflow is a case where operations on 2 numbers exceeds the maximum (or goes below the minimum) value the data type can have. Usually it is assume...

Posted on: 2024-10-08 04:21:09