Hi all,
consider the below code snippet:

struct ips
{
int i;
};

struct ips * ipsptr;
int * ptr;

ipsptr = (struct ips * ) malloc(sizeof(struct ips));
ptr = ipsptr;
free(ptr);

what is the effect of the code above?
Does it cause memory leak?
Please suggest how it happens or does not happen.

Thanks n regards,
Prashanth

It does not caluse a memory leak, but both pointers are invalidated after the free.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.