#include #include int main() { int* p = malloc( sizeof( int ) ); *p = 5; printf( "%i\n", *p ); free( p ); return 0; }