answersLogoWhite

0

To convert F to C, subtract 32, then multiply by 5/9

77-32 = 45

45x5/9 = 25

Going the other way, to convert C to F

Multiply by 9/5, then add 32

User Avatar

Wiki User

12y ago

What else can I help you with?

Continue Learning about Engineering

What is the syntax of data conversion in c?

ghanta


Which header file should be included in c to enable string conversion?

What conversion do you mean? For example strtol is defined in stdlib.h, sprintf is defined in stdio.h.


How do you implement a currency converter in c?

To implement a currency converter in C, you can start by defining a function that takes the amount and the conversion rate as parameters. Use this function to calculate the converted amount by multiplying the input amount by the conversion rate. For user interaction, use printf to prompt for the amount and conversion rate, then call your conversion function and display the result. Make sure to include necessary header files like <stdio.h> for input and output operations.


What is 58 c in c?

Conversion from Celsius to Fahrenheit is done in three steps: 1. Multiply value in degrees Celsius by 9. 2. Divide result of step 1 by 5. 3. Add 32 to result of step 2. Conversion formula: [°F] = [°C] * 9 / 5 + 32 = 58 * 9 / 5 + 32 = 136.4 °F


What is a conversion function?

As the name suggests, a conversion function is a function that converts a value from one type to another. Many such conversions are either implicit or built-in operations, such as when converting from an int to a double. However, when converting between user-defined types, or between a user-defined type and a built-in type, we must write a function to explicitly perform the conversion for us. In object-oriented languages, we rely on conversion constructors and conversion operators to perform these conversions implicitly, but in C we must explicitly call the appropriate conversion functions.