Complete Program 10.1 below. Trace the output of each math functions and brief what it does. [Lengkapkap Program 10.1 di bawah. Tentukan output dan huraikan bagi setiap fungsi math yang digunakan.] //Program 10.1 2 #include 3 #include 4 // 1. Write down an appropriate directive here int main() { int a = sqrt (9); printf("\n 1. sqrt(9) is %d ", a); 9 10 int i = pow (5,3); printf("\n 2. pow (5,3) is %d ", i); 11 12 int j = ceil (2.5); printf("\n 3. ceil(2.5) is %d ", j); 14 15 16 int k = floor (2.5); printf("\n 4. floor (2.5) is %d ", k); 17 18 19 20 int x = ceil (2.1); 21 printf("\n 5. ceil(2.1) is %d ", x); 22 int y = floor (2.1); printf("\n 6. floor (2.1) is %d ", y); getch(); return 0; 23 26 27 N M 4 567 0 O 4 56N

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question
Complete Program 10.1 below. Trace the output of each math functions and
brief what it does.
2.
[Lengkapkap Program 10.1 di bawah. Tentukan output dan huraikan peranan
bagi setiap fungsi math yang digunakan.]
1
//Program 10.1
#include <stdio.h>
#include <conio.h>
4
// 1. Write down an appropriate directive here
int main()
7
{
int a = sqrt(9);
printf("\n 1. sqrt(9) is %d ", a);
8
9.
10
int i = pow (5,3);
printf ("\n 2. pow (5,3) is %d ", i);
11
12
13
14
int j = ceil(2.5);
printf("\n 3. ceil(2.5) is %d ", j);
15
16
int k = floor (2.5);
printf("\n 4. floor (2.5) is %d ", k);
17
18
19
20
int x = ceil(2.1);
21
printf("\n 5. ceil(2.1) is %d ", x);
22
int y
printf("\n 6. floor (2.1) is %d ",
getch ();
return 0;
23
floor (2.1) ;
24
y) ;
25
26
27
}
Transcribed Image Text:Complete Program 10.1 below. Trace the output of each math functions and brief what it does. 2. [Lengkapkap Program 10.1 di bawah. Tentukan output dan huraikan peranan bagi setiap fungsi math yang digunakan.] 1 //Program 10.1 #include <stdio.h> #include <conio.h> 4 // 1. Write down an appropriate directive here int main() 7 { int a = sqrt(9); printf("\n 1. sqrt(9) is %d ", a); 8 9. 10 int i = pow (5,3); printf ("\n 2. pow (5,3) is %d ", i); 11 12 13 14 int j = ceil(2.5); printf("\n 3. ceil(2.5) is %d ", j); 15 16 int k = floor (2.5); printf("\n 4. floor (2.5) is %d ", k); 17 18 19 20 int x = ceil(2.1); 21 printf("\n 5. ceil(2.1) is %d ", x); 22 int y printf("\n 6. floor (2.1) is %d ", getch (); return 0; 23 floor (2.1) ; 24 y) ; 25 26 27 }
Expert Solution
steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
Datatypes
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education