Q. Swap two numbers using the following function. Complete the function. You won't be allowed to use a temporary variable to swap the two numbers.
void swap ( ... )
{
/* Swap code goes here */
}
int main ()
{
int a[2] = {2,3};
/* print the array so that a[0] is 3 and a[1] is 2 */
/* swap function call and print code goes here */
}