will you want to know about trics like hack nd life etc. follow me 😎
c program for addition
Get link
Facebook
X
Pinterest
Email
Other Apps
Programm for addition :-
#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
int a,b,c;
printf("enter the value of a=");
scanf("%d",&a);
printf("enter the value of b=");
scanf("%d",&b);
c=a+b;
printf("sum is: %d");
getch();
}
Comments
Post a Comment