Multiple Initialization of a for loop
Program to print this pattern of numbers
1 2
3 4
5 6
7 8
9 10
Output :
उपरोक्त प्रोग्राम में हमने दो variables i और j को एक ही loop में initialize किया है ।
Program to print this pattern of numbers
1 2
3 4
5 6
7 8
9 10
#include<stdio.h>
#include<conio.h>
int main(void)
{
int i,j;
clrscr();
printf("The two columns of natural numbers");
for(i=1;j=2 ;i<=9 && j<=10; i+=2, j+=2)
{
printf"%d %d\n", i,j);
}
getch();
return 0;
}
int main(void)
{
int i,j;
clrscr();
printf("The two columns of natural numbers");
for(i=1;j=2 ;i<=9 && j<=10; i+=2, j+=2)
{
printf"%d %d\n", i,j);
}
getch();
return 0;
}
The two columns of natural numbers
1 2
3 4
5 6
7 8
9 10
1 2
3 4
5 6
7 8
9 10
उपरोक्त प्रोग्राम में हमने दो variables i और j को एक ही loop में initialize किया है ।
NEXT : continue statement
PREVIOUS : do - while loop
No comments:
Post a Comment