C program to find the difference of two numbers on January 28, 2022 Get link Facebook X Pinterest Email Other Apps C Program to find the difference of two numbersCODE#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
Comments
Post a Comment