My first post

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

2+4+6..............+n ধারার যোগফল নির্ণয়ের সি প্রোগ্রামিং

#include<stdio.h> 

#include<conio.h>

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

Comments