Answers for "hello world in visual c++"

C++
1

hello world in visual c++

#include <iostream>
using namespace std;
int main()
{
    cout << "Hello, world, from Visual C++!" << endl;
}
Posted by: Guest on September-14-2021

Browse Popular Code Answers by Language