//sum of two no
#include<stdio.h>
#include<conio.h>
main( )
{ int n,m,s;
printf("Enter two no --");
scanf("%d%d",&n,&m);
s=n+m;
printf("The sum of two no-%d ",s);
getch();
}
#include<stdio.h>
#include<conio.h>
main( )
{ int n,m,s;
printf("Enter two no --");
scanf("%d%d",&n,&m);
s=n+m;
printf("The sum of two no-%d ",s);
getch();
}
No comments:
Post a Comment