#include <stdio.h>
#define Lucky_Numbers 100;
/********************************************************************************************************************************************
* @Function£º Numerical transformation
* @Param£º *First_parameter //The address of the first value
*Second_parameter //The address of the second value
* @Return£º Lucky_Numbers //Content provider
* @date£º 12,08,2019
* @auther£º CHEN
* @note£º This function can transform two values
********************************************************************************************************************************************/
int Numerical_transformation(int *First_parameter, int *Second_parameter)
{
*First_parameter ^= *Second_parameter;
*Second_parameter ^= *First_parameter;
*First_parameter ^= *Second_parameter;
return Lucky_Numbers;
}
int main()
{
int x = 10;
int y = 30;
printf("Before the change:x=%d,y=%d\n", x, y);
Numerical_transformation(&x, &y);
printf("After the tchange:x=%d,y=%d\n",x,y);
while (1);
return 0;
}