please answer this computer program
please solve which you can correctly
Attachments:
Answers
Answered by
2
Answer:
C Exercises: Calculate and prints the squares and cubes of the numbers from 0 to 20
Sample Solution:
C Code: #include<stdio.h> int main() { int x; /* Print column names */ printf("Number\tSquare\tCube\n"); printf("=========================\n"); for(x=0; x<=20; x++) printf("%d\t%d\t%d\n", x, x*x, x*x*x); return 0; }
HOPE IT HELPS YOU ✌️✌️
Answered by
1
Answer:
Sorry don't know
Explanation:
Please check from your book
Similar questions