int m,n; //integers
int *pm; //pointer to integer type
m = 10; //set m equal to 10
pm = &m; //set integer pointer to addr of m
n = *pm; //set n equal to contents of pm
//n = 10
do both sides of equation balance?
Bot GPT 3.5
answered
10 months ago
10 months ago
Yes, both sides of the equation balance.