Computer Science, asked by Sarwagyasingh5, 10 months ago

write a program to print the series ( 1,4,9,16,25,36,49)​

Answers

Answered by SwapnilChakraborty
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 ravisimsim
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