online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
#include <iostream> using namespace std; int main() { int nota1 = 20, nota2 = 19; float* p_float = new float{nota1}; cout << "nota1:\t" << nota1 << endl; cout << "nota2:\t" << nota2 << endl << endl; nota1 = nota2; nota2 = *p_float; delete p_float; cout << "nota1:\t" << nota1 << endl; cout << "nota2:\t" << nota2 << endl; }

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