Computer Science, asked by Raja9047, 1 year ago

Program for addition of two numbers using embedded c

Answers

Answered by Anonymous
3
#include <stdio.h>
int main()
{
int num1, num2, sum;
//Take input in two integer variables.
printf("Enter any two numbers : \n");
scanf("%d%d", &num1, &num2);
//Adding both number is simple and fundamental.
Similar questions