Basic arithmetic operations with the double datatype in C - Printable Version +- QP School (https://qomplainerzschool.lima-city.de) +-- Forum: Tutorials (https://qomplainerzschool.lima-city.de/forumdisplay.php?fid=3) +--- Forum: C 18 Tutorials (https://qomplainerzschool.lima-city.de/forumdisplay.php?fid=32) +--- Thread: Basic arithmetic operations with the double datatype in C (/showthread.php?tid=5153) |
Basic arithmetic operations with the double datatype in C - Qomplainerz - 07-26-2023 Example: double x = 5.5; double y = 2.5; double sum = x + y; double difference = x - y; double product = x * y; double quotient = x / y; Explanation: In this example, we declare several double variables (x, y, sum, difference, product, and quotient). We perform basic arithmetic operations using these variables. sum stores the result of adding x and y. difference stores the result of subtracting y from x. product stores the result of multiplying x and y. quotient stores the result of dividing x by y. |