c++ starter

#include <iostream> // Include the input/output stream library

using namespace std; // Use the standard namespace for cout and cin

// Function prototype for the main function
int main();

// Entry point of the program
int main() {
    // Display a message to the console
    cout << "Hello, World!" << endl;

    // Return 0 to indicate successful completion of the program
    return 0;
}