Thursday, March 8, 2012

Program to sum two no

//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();
}

No comments:

Post a Comment