#include<stdio.h>
int main()
{
int i, j, k;
printf("Output of nested loop is : \n");
for (i = 0; i < 3; i++)
{
for (j = 0; j < 3; j++)
{
printf(" %d", i + j);
}
}
return 0;
}
Output of nested loop is :
0 1 2 1 2 3 2 3 4
No comments:
Post a Comment