Monday, May 6, 2013

Subtraction Of Two Number

/*Subtraction Of Two Number*/
/* Suchetan Dey */

#include<stdio.h>
#include<conio.h>
    void main()
    {
        int a,b,c;
        clrscr();
        printf("Enter The Number Of A \n");
        scanf("%d",&a);
        printf("Enter The Number Of B \n");
        scanf("%d",&b);
        c=a-b;
        printf("The Subtraction Is %d",c);
        getch();
    }

The Output is :-




No comments:

Post a Comment