online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code    Language
#include <stdio.h> #include <malloc.h> // Libreria necessaria per l'allocazione dinamica. int main() { // DICHIARAZIONE DI PUNTATORE AD INTERO int *pA ; // CREAZIONE AREA DI MEMORIA INTERA A RUNTIME pA = (int *)malloc(sizeof(int)*1) ; printf( "\n Inserisci un valore: " ) ; scanf( "%d" , pA ) ; printf( "\n Hai inserito: %d" , *pA ) ; 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