
/* More Samples :-
http://www.helptoc.blogspot.com
mail - helptoc@gmail.com
*/
#include
//int calc (int a, int b);
int calc_sum(int a, int b)
{
return a + b;
}
int main()
{
int tot;
tot=calc_sum(23, 55);
printf ("Total = %d\n", tot);
exit (0);
}
Thanks
ReplyDelete