Showing posts with label even number sum program. Show all posts
Showing posts with label even number sum program. Show all posts

Wednesday, March 5, 2014

C program to print sum of even numbers upto 10

Share Post:
#include <stdio.h>
#include <stdlib.h>

int main()
{
    int a, sum=0;
    for(a=1; a<=10; a++)