How can i make the pyramid by*? Like* ** *** **** | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 1

How can i make the pyramid by*? Like* ** *** ****

31st Dec 2019, 4:40 PM
Abbasali
2 Answers
+ 5
#include <stdio.h> int main() { int i,j; for (i=1;i<=5;i++) { for (j=1;j<=i;j++) { printf ("* "); } printf ("\t\t"); } return 0; }
31st Dec 2019, 4:53 PM
Shaurya Barnwal
+ 4
My Codes Patterns see
31st Dec 2019, 5:02 PM
Shaurya Barnwal