Instructions: In the code editor, you are provided with a treasureChestMagic() function which has the following description: Return type - void Name - treasureChestMagic Parameters - an address of an integer Description - updates the value of a certain integer randomly You do not have to worry about how the treasureChestMagic() function works. All you have to do is ask the user for an integer and then call the treasureChestMagic() function, passing the address of that integer you just asked. Finally, print the updated value of the integer inputted by the user.   Please create a main code for my function that works with this. This is my code: #include #include void treasureChestMagic(int*); int main(void) {     // TODO: Write your code here     return 0; } void treasureChestMagic(int *n) {     int temp = *n;     int temp2 = temp;     *n = *n + 5 - 5 * 5 / 5;     temp2 = (int) pow(2, 3);     if(temp % 3 == 0) {         *n = temp * 10;     } else if(temp % 10 == 0) {         *n = temp + 3;     } else if(temp % 11 == 0) {         *n = temp - 5;     } }   The output should be: Enter n: 10 Treasure Chest Magic Result = 13

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

Instructions:

  1. In the code editor, you are provided with a treasureChestMagic() function which has the following description:
    1. Return type - void
    2. Name - treasureChestMagic
    3. Parameters - an address of an integer
    4. Description - updates the value of a certain integer randomly
  2. You do not have to worry about how the treasureChestMagic() function works. All you have to do is ask the user for an integer and then call the treasureChestMagic() function, passing the address of that integer you just asked.
  3. Finally, print the updated value of the integer inputted by the user.

 

Please create a main code for my function that works with this.

This is my code:

#include<stdio.h>
#include<math.h>

void treasureChestMagic(int*);

int main(void) {
    // TODO: Write your code here

    return 0;
}

void treasureChestMagic(int *n) {
    int temp = *n;
    int temp2 = temp;

    *n = *n + 5 - 5 * 5 / 5;

    temp2 = (int) pow(2, 3);

    if(temp % 3 == 0) {
        *n = temp * 10;
    } else if(temp % 10 == 0) {
        *n = temp + 3;
    } else if(temp % 11 == 0) {
        *n = temp - 5;
    }
}

 

The output should be:

Enter n: 10

Treasure Chest Magic Result = 13

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