Answers for "program c++ example"

C++
1

c++ example

// C++ Hello World program
#include <iostream>

int main() {
    std::cout << "Hello World!";
    return 0;
}
Posted by: Guest on August-20-2021
-1

simple c++ program

// Your First C++ Program

#include <iostream>

int main() {
    std::cout << "Hello World!";
    return 0;
}
Posted by: Guest on November-30-2020

Browse Popular Code Answers by Language