Program for addition of two numbers using embedded c
Answers
Answered by
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.
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