Homework #1
Due: 01/29/2025
Write C code that does the following:
1. Interactively read the three coefficients of a quadratic equation and compute the two roots. The program must alert if there is no real root, i.e. read a, b, c of
a x2 + b x + c = 0,
and compute
x =
b ±


b2 − 4 a c

2 a
.
Note: sqrt is available in math.h. You need to compile the program with "-lm" option, i.e.
gcc -lm myprogram.c

Make sure that you add a routine to check the positiveness of the discriminant using the if statement. Show actual runs and examples.
Example:
$ a.out
Enter a, b and c separated by space =
The two roots are ....(your output)...

2. Interactively read temperature in Celsius and convert it to Fahrenheit. Note
C = (F −32 ) × 5

9
.
Example:
$ a.out
Enter temperature in C = 29
It is 84.2 degrees in Fahrenheit.





File translated from TEX by TTH, version 4.03.
On 21 Jan 2025, 20:50.