write a function named addem with call by address integer parameters.The function will add 2 to the first parameter and 5 to the second parameter
Answers
Answered by
0
This is a simple function.
void addem (int *x, int *y)
{
*x = *x + 2;
*y = *y + 5 ;
}
void addem (int *x, int *y)
{
*x = *x + 2;
*y = *y + 5 ;
}
kvnmurty:
click on thanks button above;; select best answer
Similar questions