C program to print 1 11111 1111
Solved
Amrit
-
Updated on Jan 25, 2019 at 11:42 AM
agrajtech17
agrajtech17
- Posts
- 1
- Registration date
- Saturday May 22, 2010
- Status
- Member
- Last seen
- May 22, 2010
Related:
- 1 11 111 pattern in c
- Print 1 11 111 in c - Best answers
- Draw print pattern 11 1111 - Best answers
- Want to execute a C program from a VisualC++ - Forum - Programming
- How to display 1*1 11*11 using c program? - Forum - Programming
- About c program - Forum - Windows
- Write a loop for following pattern - Forum - Programming
- Adobe flash player 11.1 0 free download - Download
1 reply
agrajtech17
Updated on Jan 25, 2019 at 11:43 AM
- Posts
- 1
- Registration date
- Saturday May 22, 2010
- Status
- Member
- Last seen
- May 22, 2010
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(" "); }