DiamondW2615 DiamondW2615 20-12-2022 Computers and Technology contestada Given the declarations float x; float* ptr = &x; what does the following statement do? *ptr = 24.9; A. It stores 24.9 into ptr. B. It stores 24.9 into the variable pointed to by ptr. C. It stores 24.9 into x. D. b and c above E. a, b, and c above