/* * Author: Amit Dutta (amitdutta4255@gmail.com) | Date: 12 Dec 2025 * Repo: https://github.com/notamitgamer/bsc * License: MIT */ /* Write a program to find the absolute value of a number entered through the keyboard. */ /* Let Us C, Chap- 3, Page - 53, Qn No.: f(d) */ #include #include int main() { double num; printf("Enter the number : "); scanf("%lf", &num); num = abs(num); printf("\nAbsolute value of the input is : %g", num); return 0; }