C program to print 1 11111 1111
Solved
Amrit
-
Updated on Jan 25, 2019 at 11:42 AM
agrajtech17 Posts 1 Registration date Saturday May 22, 2010 Status Member Last seen May 22, 2010 - May 22, 2010 at 04:25 AM
agrajtech17 Posts 1 Registration date Saturday May 22, 2010 Status Member Last seen May 22, 2010 - May 22, 2010 at 04:25 AM
Related:
- 1 11 111 pattern in c
- Write a c program to find the sum of the series 1+11+111+1111+….. upto n terms using for loop where 1<=n<=10 - Best answers
- 1 11 111 pattern - Best answers
- Tentacle locker 1 - Download - Adult games
- Fnaf 1 download pc - Download - Horror
- Windows 11 tiny iso download - Download - Windows
- Fc 24 free download for pc windows 11 - Download - Sports
- Gta 5 download apk pc windows 11 - Download - Action and adventure
1 response
agrajtech17
Posts
1
Registration date
Saturday May 22, 2010
Status
Member
Last seen
May 22, 2010
19
Updated on Jan 25, 2019 at 11:43 AM
Updated on Jan 25, 2019 at 11:43 AM
part one 1 11 111 11111
part two 1 12 123 1234
for(int i=1;i<=10;i++) { for(int j=1;j<=i;j++) printf("%d",1); printf(" "); }
part two 1 12 123 1234
for(int i=1;i<=10;i++) { for(int j=1;j<=i;j++) printf("%d",j); printf(" "); }