My first post

This is my website . Welcome everybody to my new website. Here there are some necessary things of yours.

1²+2²+3²…………+n ধারার যোগফল নির্ণয়ের সি প্রোগ্রামিং

#include<stdio.h> 

#include<conio.h>

main()
{
    int i, n, sum;
    printf("Enter numbers: ");
    scanf("%d", &n);
    sum=0;
    for(i=1; i<=n; i++)
    sum = sum+i*i;
    printf("The sum is: %d", sum);
    getch ();
}

Comments