online compiler and debugger for c/c++

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