Tech Programs
Sunday, 3 May 2015
Subtract in c Program
Subtract In C Program
#include<stdio.h>
int main()
{
int a,b,c;
printf("Enter two number:");
scanf("%d%d",&a,&b);
c=a-b;
printf("The Value is :%d",c);
}
Output
Enter two number : 4
2
The Value is : 2
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment