ADVT POST

Taking user input and substraction of two numbers c program

Taking user input and substraction of two numbers c program


#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
int a,b,c;
printf("enter two value");
scanf("%d%d",&a,&b);
c=a-b;
printf("%d",c);
getch();
}
Share on Google Plus
    Blogger Comment
    Facebook Comment

0 comments:

Post a Comment

Note: only a member of this blog may post a comment.