+ 3
How can i get output in C++
I can't understand how output can get in c++ is there any help me
2 Answers
+ 3
With the iostream library, you can use the command cout to output whatever you want.
It may look like this:
cout << "Hi! :D" << endl;
Endl just signifies a new line to be created.
Hope this helped!
+ 2
What do you mean by OUTput getting IN C++? If you're talking about reading the output from a different program, check out anonymous pipes.