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
- Print 1 11 111 in c - Best answers
- Draw print pattern 11 1111 in c - Best answers
- Gta 1 download - Download - Action and adventure
- Fnaf 1 download pc - Download - Horror
- How to display 1*1 11*11 using c program? - Programming Forum
- Write a loop for following pattern - Programming Forum
- Want to execute a C program from a VisualC++ - Programming Forum
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(" "); }