Showing posts with label Adding two numbers using function. Show all posts
Showing posts with label Adding two numbers using function. Show all posts

Jan 29, 2013

/*Adding two numbers using function*/

/*Adding two numbers using function*/

#include"stdio.h"
#include"conio.h"
int sum (int x, int y) ;
void main ()
{
clrscr ();
sum (5,7);
}
sum (int x, int y);
{
primtf("%d",x+y);
getch();
}

If anyone need any adding program they can use this program. This is a very easy to use every people.

Popular Posts