Write a Program to enter any two number and display addition of
Using C Programming Language
#include<stdio.h>
#include<conio.h>
Void main()
{
Int a,b,total;
clrscr();
Printf(“Enter the First Number : ”);
Scanf(“ %d”,&a);
Printf(“Enter
Second Number :”);
scanf(“%d”,&b);
total=a+b;
Printf(“total is : %d”,total);
getch();
}
Youtube Link : https://youtu.be/I1nYGlfpgz0
Youtube Link : https://youtu.be/I1nYGlfpgz0
Thank you for help
ReplyDelete