codylee8197 codylee8197 18-01-2024 Computers and Technology contestada Which of these properly de-allocated the following array?int *ptr = new int[10];a. delete ptr;b. delete[] ptr;c. delete *ptr;d. delete[] *ptr;