Choose Category
#include<stdio.h> int main() { int a, b, c; printf("Enter the 2 numbers to sub\n"); scanf("%d%d",&a,&b); c = a - b; printf("Sub of 2 numbers = %d\n",c); return 0; }