cpp_helloworld

Run Settings
LanguageC++
Language Version
Run Command
#include <iostream> #include <string> #include <vector> using namespace std; int main() { cout << "Hello World!" << endl; string a("hello"); string b("world"); vector<string> str_vec; str_vec.push_back(a); str_vec.push_back(b); for (auto & c : str_vec) { cout << c << endl; } return 0; }
Editor Settings
Theme
Key bindings
Full width
Lines