C programming tutorial-15 PATTERNS WITH FOR LOOP

preview_player
Показать описание

C programming tutorial-15 PATTERNS WITH FOR LOOP
In this tutorial we will learn how to create amazing patterns using FOR loop. It is explained using two patterns as examples.

Music Used:
Intro:'La Ti Da'

For Online C tests try the following link:

Don't forget to SUBSCRIBE,COMMENT,RATE

LETS GET IN TOUCH!!!
Рекомендации по теме
Комментарии
Автор

Thank you. Good to know that you liked it. Watch my other tutorials as well to know more !!

DurgaswaroopPerla
Автор

I tried to use the same concept to implement it on JAVA but its simply printing 1 column with 25 #'s
class Patterns 
{
static int i, j;
static int temp=5;
public static void main(String[] args) 
{
for (i=0;i<5 ;i++ )
{
for(j=0;j<temp;j++)
{
System.out.println("#");
}
temp = --temp;

}

}
}

animeshsrivastavash
Автор

sir, can tell suggest any website for online c tests

msindhuri
Автор

I have updated the description with a link. That will probably help your cause. and All the best. :)

DurgaswaroopPerla
visit shbcf.ru