Facebook Twitter Instagram
Posts in Category: C++

Operators

symbol that tells compiler to perform some arithmetic task is called an operator. C++ have many types of operators. We can categorize operators i...

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

Increment and decrement operators

nary operators that are used to add or subtract 1 from a variable called unary operator. It is used to make some ease in programming. Such as to a...

Posted on: 2024-10-08 04:23:32

Typecasting

The process of converting one type data into another type is called type casting. This conversion can be done by default with the help of translat...

Posted on: 2024-10-08 04:24:38

C++ Output Stream

We provide data to the computer for processing, it called input to the computer. After processing computer shows us results that called output. In...

Posted on: 2024-10-08 04:26:34

Escape Sequence

If we write two lines output for example:

cout << “First line”;

cout <&l...

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