.Basic c question.1.Question:where in memory the variables are stored? Local variables, global variables, static. AnswerLocal variables sit in Stack. Global and static goto Data segment. Dynamic memory comes from Heap.2.Questioncan you explian the meaning for the follwoing programchar *c1, *c2, *c3, *c4, *c5 ; char analysis8 = a, n, a, l, y, s, i ,s; int main() c5 = c4 = analysis; +c4; c3 = &analysis6; c2 = c5 + 2 ; c1