- /*
- Name : C source program of Simple summation or Addition
- Author : Funny Coder(Maniruzzman Akash)
- It's a free code. You can use it anywhere
- */
- #include<stdio.h>
- int main(){
- int num1, num2, sum;
- printf("\nEnter first number : ");
- scanf("%d", &num1); //take number1 from user
- printf("\nEnter second number : ");
- scanf("%d", &num2); //take number2 from user
- sum = num1 + num2;
- printf("\nSummation is : %d\n", sum);
- return 0;
- }
Friday, April 22, 2016
C Source codes
No comments:
Post a Comment