C- Programming - Print Pattern

#include <stdio.h>
int main()
{
printf("*\n*_*\n*_*_*");
return 0;
}

Comments