Here is a simple ‘Hello, World!’ program in C++:
“`cpp
#include
int main() {
std::cout << 'Hello, World!' << std::endl;
return 0;
}
```
This program includes the `iostream` library, which allows it to perform input and output operations. The `main` function is the entry point of the program. Inside this function, `std::cout` is used to output the string 'Hello, World!' to the console. The `std::endl` is used to insert a new line. Finally, the program returns `0` to indicate that it has finished successfully.