Friday, May 20, 2016

Two Number of Sum the Program

#include <stdio.h>

int main()
{
    int a, b, sum;

    a = 5;
    b = 5;
    sum = a+ b;
    
    printf("%d",sum);

    return 0;
}

No comments:

Post a Comment