Question

square of the value to it and displays the result. The function should be capable of of the v decimal points. 4. a. Write a f

0 0
Add a comment Improve this question Transcribed image text
Answer #1
\color{blue}In\;C:

#include <stdio.h>

// a
void squareIt(int n) {
    printf("square of %d is %d\n", n, n*n);
}

// b
int main() {
    squareIt(2);
    squareIt(-3);
    squareIt(7);
    squareIt(4);
    return 0;
}

square of 2 is 4 square of -3 is 9 square of 4 is 16 Process finished with exit code 0

Add a comment
Know the answer?
Add Answer to:
square of the value to it and displays the result. The function should be capable of...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT