हिंदी

Wap to Print All Possible Combination of 1,2,3 Using Nested Loops. - Structured Programming Approach

Advertisements
Advertisements

प्रश्न

WAP to print all possible combination of 1,2,3 using nested loops.

टिप्पणी लिखिए

उत्तर

#include<stdio.h>
#include<conio.h>
void main()
{
int i,j,k;
clrscr();
for(i=1;i<=3;i++)
{
for(j=1;j<=3;j++)
{
for(k=1;k<=3;k++)
printf(“\n%d%d%d”,i,j,k);
}
}
getch();
}
Output:
111
112
113
121
122
123
131
132
133
211
212
213
221
222
223
.
.
.
.
(and so on.)
shaalaa.com
Control Structures - Looping
  क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
2017-2018 (June) CBCGS
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Course
Use app×