123456789101112131415161718192021222324252627282930313233343536Name:cs202 login:Quiz 6 - Bit Operations and Program Memory1) Program Memory OrganizationGiven a complete C program, tell where each variable is stored in programmemory. Example:Given:#include <stdio.h>char c = 'a';int main(int argc, char *argv[]){int x = 20;int a[20];int *b = malloc(10 * sizeof(int));}Questions:1.1) Where is x stored?1.2) Where is argc stored?1.3) Where is b stored?1.4) Where is b[2] stored?1.5) Where is a[1] stored?