Tutorial_10
ICT/2022/139 R.S.R.Ranathunga Print the following shapes using loop construct of C programming. * * * * * * * * * * * * * * * * * * * * * #include <stdio.h> int main(){ int i,x; for(i=1;i<=6;i++){ for(x=1;x<=i;x++){ printf("*"); } printf("\n"); } return 0; } * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * #include <stdio.h> int main(){ int i,x; for(i=1;i<=5;i++){ for(x=1;x<=7;x++){ printf("*"); } printf("\n"); } return 0; } * * * * * * * * * * * * * * * * * * * * * #include <stdio.h> int main(){ int i,x; for(i=6;i>=1;i--){ for(x=1;x<=i;x++){ printf("*"); } printf("\n"); } return 0; } * * * * * * * * * * * * * * * ...