C PROGRAMING SUBTRACTION PROGRAM CODE on June 10, 2022 Get link Facebook X Pinterest Email Other Apps C PROGRAMING SUBTRACTION PROGRAM CODE#include<stdio.h>#include<conio.h>main(){int a,b,result;clrscr();printf("\n\tENTER 1ST NUMBER=");scanf("%d",&a);printf("\n\tENTER 2ND NUMBER=");scanf("%d",&b);result=a-b;printf("\n\tSUBSTRACTION=%d",result);getch();return 0;}*** Comments
Comments
Post a Comment