The dermis is a layer of the skin of the integumentary system. The dermis lies deep to the superficial epidermis which is also the most superficial layer of the skin. The dermis lies superficial to the underlying hypodermis which is also referred to as subcutaneous tissue.
Among the components of the dermis are: sweat glands, hair follicles, collagen fibers, sensory- nerve endings and arrestor pill muscles.
s[i], *(i+s), *(s+i), i[s] are all different ways of expressing the same idea.Generally array name is the base address for that array. Here s is the base address. i is the index number/displacement from the base address. So, indirecting it with * is same as s[i]. i[s] may be surprising. But in the case of C it is same as s[i].