c++ hello world windows code example
Example: c++ hello world
#include <iostream>
int main()
{
std::cout << "Hello, C++!" << std::endl;
return 0;
}
#include <iostream>
int main()
{
std::cout << "Hello, C++!" << std::endl;
return 0;
}