Computer Science, asked by yugandharakale, 4 months ago

Write a program to find the sum of 1st 10 odd natural numbers.​

Answers

Answered by srioo9
3

int main()

{

int sum = 0;

for(int i = 1; i < 20; i = i+2)

sum += i;

Printf("%d", sum) ;

return 0;

}

I hope this is use full

Mark me brainlist plz

Follow me

Similar questions