Pattern program using single loop | Number pattern | Code pattern in less than a minute #shorts

preview_player
Показать описание
#shorts #patternshorts #shortsfeed
Pattern program using single loop | Number pattern | Code pattern in less than a minute #shorts
Understand and code the pattern program in less than a minute.

Subscribe for more:

Get programs here:
Web-

Playlist:

Support this channel:

Facebook:

SoftEthics :

Email:
Рекомендации по теме
Комментарии
Автор

Bro you can use 2 for Loops for this also!
It can be more easy!!

AmitMeena-es
Автор

Ese triangle me kese convert karege
Vo dikhayena

naitripatel
Автор

How to solve this program
1
121
12321
1234321
123454321

_old_cartoons___
Автор

#include <stdio.h>
int main()
{
int i, j, n;
printf ("enter number\n");
scanf ("%d", &n);
for(i=1;i<=n;i++)
{
for (j=1;j<=i;j++)
{
printf ("%d", j);
}
printf ("\n");
}
}

anoopratnala