c programme to add two number
//add two number
#include<stdio.h>
#include<conio.h>
void main()
{
int num1,num2,sum;
printf("Enter first number\n");
scanf("%d",&num1);
printf("Enter second number");
scanf("%d",&num2)
sum=num1+num2;
printf("sum of two number is %d ",sum);
getch();
}
OUTPUT;


No comments:
Post a Comment