Its a C program using Tcc I need to code that i can complie and run in Tcc part
ID: 645236 • Letter: I
Question
Its a C program using Tcc I need to code that i can complie and run in Tcc part of the codes it there which will print out the follwing print a triangular-shaped muliplication table for the numbers from 2 to 20 using , that will look exacty as soon blow. I'm lost and running low on time =( can you please leave commet in program too so i can understand what you did at that step
Its a C program using Tcc I need to code that i can complie and run in Tcc part of the codes it there which will print out the follwing print a triangular-shaped muliplication table for the numbers from 2 to 20 using , that will look exacty as soon blow. I'm lost and running low on time =( can you please leave commet in program too so i can understand what you did at that step Study and try (compile, run) the following C program that uses nested for loops to print a square grid of stars and dots. Make sure you understand how the triangular configuration is formed with the use of an if-else statement. Your task is to print a triangular-shaped multiplication table for numbers from 2 to 20, that will look exactly as shown below. Use nested loops. Make sure numbers and dots line up to form equally sized, right-adjusted columns, i.e., the dots must be aligned with the rightmost digits.Explanation / Answer
#include <stdio.h>
int main() {
int size = 20, row, column;
for (column = 1; column <= size; column++)
printf(" %3d",column);
printf(" ");
for(row = 2; row <= size; row++){
for(column = 1; column <= size; column++){
if(column > row)
printf(" .");
else
printf(" %3d",column*row);
}
printf(" ");
}
return 0;
}
Related Questions
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.