Answers for "windows gcc"

1

windows gcc

GCC for windows download link: https://winlibs.com
Posted by: Guest on October-15-2021
-3

gcc to windows

#include <iostream>
#include <vector>
#include <string>

using namespace std;

int main()
{
    vector<string> msg {"Hello", "C++", "World", "from", "VS Code", "and the C++ extension!"};

    for (const string& word : msg)
    {
        cout << word << " ";
    }
    cout << endl;
}
Posted by: Guest on July-21-2021

Browse Popular Code Answers by Language