| <<< | Index | First C++ program, cont. >>> |
The following C++ program will print text Hello, World! on computer screen:
#include <iostream>
int main()
{
std::cout << "Hello, World!";
return 0;
}
Our first program is constructed from the following parts...
| <<< | Index | First C++ program, cont. >>> |