What is the output of the following code
int main()
{
int *p = (int *)malloc(sizeof(int));
*p=10
free(p);
return 0
}

Posted on by