1 2 3 4 5 6 7 | #include <iostream> #include <ostream> int main() { std::cout << "Hello, World!" << std::endl; } |
From now on, I’m going to write about my releases here.
1 2 3 4 5 6 7 | #include <iostream> #include <ostream> int main() { std::cout << "Hello, World!" << std::endl; } |
From now on, I’m going to write about my releases here.
Thanks for useful tut braw!
You can also use
using namespace std;
@InFlames
well that’s just unnecessary use of resources for just cout and endl.
nice, thx !
The include
#include
is not nessessary :)
It was in C++03, which was at use when I wrote that post ;)