online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
#include <iostream> #include <string> using namespace std; int main () { string str1 = "Maxima"; string str2 = "Determinacion"; string str3; int len ; // copia str1 a str3 str3 = str1; cout << "str3 : " << str3 << endl; // concatena str1 y str2 str3=str1+ str2; cout << "str1 + str2: " << str3 << endl; // La longitud total de str3 despues de la concatenacion len = str3.size(); cout << "str3.size(): " << len << 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