C program to find the difference of two numbers

 


C Program to find the difference of two numbers


CODE

#include<stdio.h>

int main()

{

int a,b,diff=0;

printf("Enter any two numbers");

scanf("%d%d",&a,&b);

diff=a-b;

printf("The difference is %d",diff);

return 0;

}


RESULT



Comments