#include int main() { int *p = malloc(7); p = 0; // The memory is leaked here. return p[0]; }