Consider the following statements.struct circleData{ double radius; double area; double circumference;};
circleData circle;Which of the following statements is valid in C++?
A. cin >> circle.radius;
circle.area = 3.14 * radius * radius;
B. cin >> circle.radius;
circle.area = 3.14 * circle.radius * radius;
C. cin >> circle;
D. cin >> circle.radius;
Answer: D
Computer Science & Information Technology
You might also like to view...
In everyday life, the most commonly used number system by people is ________
A) hexadecimal B) binary C) decimal D) octal
Computer Science & Information Technology
You can modify the Excel Ribbon by creating a custom ________ so you can find the tools you use frequently
Fill in the blank(s) with the appropriate word(s).
Computer Science & Information Technology