Write a program to generate all combinations of 1, 2 and 3 using for loop.

#include<stdio.h>
main()
{

int i, j, k;

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);
}



}

}





The file can be found at:
Download File

No comments:

Post a Comment

kiss on google ads if you are anonymous because your ip is trackable.thank you.

......from.admin