C program to find the sum of two numbers on January 28, 2022 Get link Facebook X Pinterest Email Other Apps C Program to find sum of two numbersCODE#include<stdio.h>int main(){ int a,b,sum=0; printf("Enter any two numbers"); scanf("%d%d",&a,&b); sum=a+b; printf("The sum is %d",sum); return 0;}OUTPUT Comments
Comments
Post a Comment