write a program to print the series ( 1,4,9,16,25,36,49)
Answers
Answered by
1
#include<stdio.h>
#include<conio.h>
void main()
{
int i;
for(i=1;i<=10;i++)
{
printf("\n%d",i*i);
}
getch();
}
Answered by
2
#include<stdio.h>
#include<conio.h>
void main()
{
int i;
for(i=1;i<=10;i++)
{
printf("\n%d",i*i);
}
getch();
}
Ur answer is here.....!!!!!
Mark me as brainliest....!!!!
Similar questions
Math,
5 months ago
Math,
5 months ago
Math,
10 months ago
Physics,
1 year ago
Social Sciences,
1 year ago