Chapter 11: Problem 67
include
Chapter 11: Problem 67
include
All the tools & learning materials you need for study success - in one app.
Get started for freeDeclare a structure named tempscale, with the following members: fahrenheit: a double centigrade: a double Next, declare a structure named Reading, with the following members: windSpeed: an int humidity: a double temperature: a TempScale structure variable Next define a Reading structure variable.
Does a structure declaration cause a structure variable to be created?
Rewrite the following statement using the structure pointer operator: *(*strPtr).num = 10;
Rewrite the following statement using the structure pointer operator: (*rptr).windSpeed = 50;
True or False The indirection operator has higher precedence than the dot operator.
What do you think about this solution?
We value your feedback to improve our textbook solutions.