Search Results

1
vote
6answers
329 views

Simple C++ code not working

This very simple code gives me tons of errors: #include <iostream> #include <string> int main() { std::string test = " "; std::cout << test; } …