How to sum of the squares of the first ten natural numbers (1 to 10) in C

1 Answer

0 votes
#include <stdio.h>

int main(void)
{
    int sum = 0;
    
    for (int i = 0; i < 11; i++) {
        sum = sum + (i * i);
    }
    
    printf("%d", sum);
   
    return 0;
}
 
 
 
/*
run:
 
385
 
*/

 



answered Oct 18, 2023 by avibootz

Related questions

...