Question: use c languge 5. filename: squares.c 5. Write a program that prints out the squares of the numbers from 1 to 10. u the format
use c languge

5. filename: squares.c 5. Write a program that prints out the squares of the numbers from 1 to 10. u the format shown in the following sample run: 1 squared is 1 2 squared is 4 3 squared is 9 4 squared is 16 5 squared is 25 6 squared is 36 7 squared is 49 8 squared is 64 9 squared is 81 10 squared is 100 Design your program so that the limits 1 and 10 are easy to change. TA comment: Do not hardcode the print statements. Use a loop to iterate from 1 to 10. #define your min and max values. TA comment: Use %d to print the numbers in printf
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
