online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
#include <iostream> #include <vector> #include <string> int main() { std::vector<int> v; for(int i = 0; i < 10; i++) { v.push_back(i + '0'); } std::string s; for(int j = 0; j < v.size(); j++) { s.push_back(v.back()); v.pop_back(); } std::cout<<s<<std::endl; return 0; }

Compiling Program...

Command line arguments:
Standard Input: Interactive Console Text

                

                

Program is not being debugged. Click "Debug" button to start program in debug mode.

#FunctionFile:Line
VariableValue
RegisterValue
ExpressionValue