I have a variable x declared as int *x = y, where y is also a pointer variable. Is there any way to store the variable in y to x without making x a pointer such that it would look like:
int x = y; //y declaration => int *y = thing[4]
Is this confusing?