Your task is to create 3 pointers and name them: a_ptr, b_ptr, and c_ptr. Then, assign the address of a to a_ptr, b to b_ptr, c to c_ptr

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question

( C PROGRAMMING ONLY)

7. Adding Them All Up
by CodeChum Admin

Being the business-minded I am, I have a lot of sources of income. My money is getting out of hand and I don't know how much is the total now.

Can you please help me add them all up?

Instructions:

In the code editor, you are provided with a main() function that asks the user for 3 integers.
Your task is to create 3 pointers and name them: a_ptr, b_ptr, and c_ptr. Then, assign the address of a to a_ptr, b to b_ptr, c to c_ptr. Make sure to do this before the printf statement found at line 16.
Input

1. First integer

2. Second integer

3. Third integer

Output

Enter·a:·1
Enter·b:·6
Enter·c:·3
Total·=·10

main.c
1. First integer
1 #include<stdio.h>
2. Second integer
3 - int main(void) {
int a, b, c;
3. Third integer
4
printf("Enter a: ");
scanf("%d", &a);
printf("Enter b: ");
scanf("%d", &b);
printf("Enter c: ");
scanf("%d", &c);
Output
7
8
9.
Enter a: 1
10
Enter b: 6
11
Enter c: 3
12
13
// TODO: Write your answer here
Total = 10
14
15
16
17
18
printf("Total = %d", *a_ptr + *b_ptr + *c_ptr);
return 0;
Transcribed Image Text:main.c 1. First integer 1 #include<stdio.h> 2. Second integer 3 - int main(void) { int a, b, c; 3. Third integer 4 printf("Enter a: "); scanf("%d", &a); printf("Enter b: "); scanf("%d", &b); printf("Enter c: "); scanf("%d", &c); Output 7 8 9. Enter a: 1 10 Enter b: 6 11 Enter c: 3 12 13 // TODO: Write your answer here Total = 10 14 15 16 17 18 printf("Total = %d", *a_ptr + *b_ptr + *c_ptr); return 0;
Expert Solution
steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY