WRITE A PROGRAM TO PRINT THE FOLLOWING DESIGN..
2 4 6 8 10
1 3 5 7
2 4 6
3 5
4
Answers
Answered by
0
#include <stdio.h>
void main()
{
int i;
printf("The first 10 natural numbers are:\n");
for (i=1;i<=10;i++)
{
printf("%d ",i);
}
printf("\n");
}
hope it will help yuh more
Similar questions
Computer Science,
1 month ago
Math,
1 month ago
Chemistry,
1 month ago
Math,
3 months ago
Environmental Sciences,
3 months ago
Hindi,
9 months ago
Math,
9 months ago
Math,
9 months ago