The areas of the circle will represent the population, so:
Area = πr²
5² : 19,465,000
C² : 37,691,000
California circle radius = 6.96 cm
For Texas:
5² : 19,465,000
T² : 25,675,000
Texas circle radius = 5.74 cm
Answer:
bool b = isupper(x);
Step-by-step explanation:
I have written the expression for a char variable x.The isupper(x) will return true if the character x is upper case and false if the character x is lower case.
I have stored the returned value to a bool variable b .So the value of variable b will be true only when the x is in uppercase and false when b is lower case.