DEV Community

Umid2008
Umid2008

Posted on

Printing code(C++)

Today's lesson will be short today we will talk to you about the output operator in the C++ programming language.

In the C++ programming language, a release operator is written together with the keyword "cout"<<.

An Operator is a specific goal-oriented in a programming language.One can give an example of a certain part of the work i.e. C++ for example an output operator, a repeat operator, a condition operator, and a few. After the operators; ends with. The part of the work in which certain operators perform a certain task is completed, mainly with a figure bracket {}.

In the C++ programming language, we give an example for the output operator:

#include <iostream>
using namespace std;

int main ().
{
cout < < < " Hello World! Ilmhub IT school;

return 0;
}

Result: Hello World! Ilmhub IT school
Enter fullscreen mode Exit fullscreen mode

You can use C++ programming language as long as you want cout. Do not forget that it turns out in each row in the process of using the output operator in Zail.Look at the code below.

Top comments (0)