Get link Facebook X Pinterest Email Other Apps August 01, 2025 Get link Facebook X Pinterest Email Other Apps Comments
Object: To print the following April 21, 2024 #include <stdio.h> #include <conio.h> main() { int i,j; for (i=0; i<5; i++) { for (j=0; j<=i; j++) { printf("*"); printf("\n"); } } getch(); } Read more
Comments
Post a Comment