Facebook Twitter Instagram
Posts in Category: C++

Manipulators

We use manipulators to format the output on screen in a specific manner. Manipulators are the operator for formatti...

Posted on: 2024-10-08 04:28:43

Introduction to Selection Structure

In sequential structure of execution statements of a program execute one after one. Not a single statement of program skipped during execution. In...

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

Relational Operators

s it is expressed from the name of operators these symbols are used to express some relation between two variables or quantities. In other words, ...

Posted on: 2024-10-08 04:33:17

Logical Operators

Logical operators are used to generate more complex conditions for our programme. When we require to verify several conditions then we use logical...

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

if Statement

f is the decision-making statement to check either condition is true or not. If condition is then the following code that is under the bl...

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