In this video tutorial you can learn the procedure followed in C programming to add two numbers.
Related Read:
#include < stdio.h > int main() { int a, b, c; printf("Enter value of a and b\n"); scanf("%d%d", &a, &b); c = a + b; printf("Addition of %d and %d is %d\n", a, b, c); return 0; }
Output:
Enter value of a and b
30
20
Addition of 30 and 20 is 50
You can write same program without using third variable to calculate addition of 2 numbers, as below:
#include < stdio.h > int main() { int a, b; printf("Enter value of a and b\n"); scanf("%d%d", &a, &b); printf("Addition of %d and %d is %d\n", a, b, (a+b)); return 0; }
Output:
Enter value of a and b
30
20
Addition of 30 and 20 is 50
Note: Instead of int you can take float variables too. That would help in taking both integer as well as real values from the user as input.
Scanf(): For user input
In above c program we are asking user to enter the values for variable a and b. You can know more about scanf() method/function in this video tutorial: Using Scanf in C Program
Addition of Two Numbers: C Programming
[youtube https://www.youtube.com/watch?v=YYRSBD7HJTQ]
This video was produced as building block for our simple calculator application.
For full C programming language free video tutorial list visit:C Programming: Beginner To Advance To Expert