Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Виберіть правильний варіант виділення динамічної пам'яті під змінну X типу float
помилка, для змінної такого зробити неможливо
float * ptr = &X; X = new float;
float *ptr = new float; X = *ptr;
float & ptr = new float; X = & ptr;
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!