Friday, 1 September 2017

Series Program - 1

1 + 2 + 3 + 4 + 5 + ... + n

#include<stdio.h>


int main()
{
    int i,n,sum=0;
    n=10;
    for(i=1;i<=n;i++)
    {
        sum+=i;
    }
    printf("Sum: %d",sum);
    return 0;
}

No comments:

Post a Comment

C-Program to know whether the character is vowel or not

#include<stdio.h> int main() {   char c;   printf("Enter a character to know whether it is vowel or not\n");   scanf("...