It is required to create a dynamic array that can store 10 integers. Which of the following will work? Oint array=(int*) malloc(10*sizeof(int)); int array=(int*) malloc(10*sizeof(int)); int array=(int) malloc(10*sizeof(int)); int' array=malloc(10*sizeof(int)); Question 38 Consider the following code fragment. As int array[][3]=[[1,3,-5),7.9.2]);