write a program for sum of two no


a program for sum of two no in c program


#include<stdio.h>
#include<conio.h>
void main()
{
int a,b,sum;
clrcr();
printf("enter any two no");
scanf("%d%d",&a,&b);
sum=a+b;
printf("sum of %d and %d=%d"a,b,sum);
getch();
}

this program is written by shubham yadav if you have any dout than ask the quetion in the comment box i hope you undertand all the key words and i also hope that i will answer all your question

some importants link

five features of c language

Post a Comment

0 Comments
* Please Don't Spam Here. All the Comments are Reviewed by Admin.