209k views
1 vote
Write the following arithmetic expression as a valid C arithmetic expression: C = (F - 32) / 1.8

1 Answer

3 votes

Answer:


C = (F - 32)/1.8

Step-by-step explanation:

Given


C = (F - 32)/1.8

Required

Write an equivalent expression in C

The given expression uses

brackets ();

Subtraction -

and

Division /

In C,

Bracket is represented using ()

Subtraction is represented using -

Division is represented using /

Hence

The equivalent of
C = (F - 32)/1.8 in C is


C = (F - 32)/1.8

User Alex Petuschak
by
5.1k points