CODE How to print star pattern in reverse order? int main() { int i,j; for(i=4;i>=1;i--) { for(j=1;j<=i;j++) printf(" * "); printf("\n"); } } Output: * * * * * * * * * *
No comments:
If you have any doubt or query ,comment below: