Computer Science, asked by nandannandhu3334, 4 months ago

A-28-5, C-4, D-3
А
Math functions usage C language
ceil(3.6)
floor(3.6)
pow(2,5)
abs(-12)
C
1
12
13
14
15
16
Output in float data type format
32.000000
3.000000
12.000000
25.000000
4.000000
0.000000​

Answers

Answered by divyanshpatidar51
0

Answer:

see below

Explanation:

C Programming allows us to perform mathematical operations through the functions defined in <math.h> header file. The <math.h> header file contains various methods for performing mathematical operations such as sqrt(), pow(), ceil(), floor() etc.

Similar questions