Am trying to make this program in c which draws the following
\\* * *
\\** *** **
\\*** ***** ***
\\***************
if the user in puts 4.... ((need help))
i only want to use the nested for loop and the if else statements so please need help
that's what i did so far..
#include <stdio.h>
int main ()
{
int input;
printf("please enter the size of the triangle:");
scanf("%d",&input);
system ("pause");
return 0;
}
i am so new to programming and am teaching my self programming threw the internet and am not going to any programming classes
thanx