Write a program to a. Input first number b. Input second number c. Calculate the sum Sum = first number + second number d. Display the sum

PHOTO EMBED

Wed Mar 27 2024 06:52:45 GMT+0000 (Coordinated Universal Time)

Saved by @HTPrince

// Online C compiler to run C program online
#include<stdio.h>
int main(){
     int a;
     int b;
     
     
     printf("Enter number for a:");
     scanf("%d",&a);
     
     printf("Enter number for b:");
     scanf("%d",&b);
     
     int value = a+b;
     printf("The value is: %d\n",value);
    
    
    
    return 0;
}
content_copyCOPY