If *a points to an integer real number i, *c points to an integer real number j;
*a=*c means to assign the value of j to i.
Directly changes the value of j
If originally i=3, j=5,
After *a=*c, i is also equal to 5