ronreiter / interactive-tutorials

Interactive Tutorials
Apache License 2.0
4.04k stars 2.56k forks source link

Minor error in C pointer tutorial (english)'s derefencing section #675

Open adiSuper94 opened 2 years ago

adiSuper94 commented 2 years ago

In the C pointer tutorial's Dereferencing section there is a line that reads

If we want to create an array that will point to a different variable in our stack,

Shouldn't it be

If we want to create a pointer that will point to a different variable in our stack,

?

image