I got it working
I change my code to
if (rd["profile_pic"] == DBNull.Value)
{
profilepic.Image = Properties.Resources._default;
path.Text = "Default Image";
}
else
{
byte[] imgg = (byte[])(rd["profile_pic"]);
MemoryStream mstream = new MemoryStream(imgg);
profilepic.Image = System.Drawing.Image.FromStream(mstream);
}