I am aware that foo[bar] is equal to *(foo + bar), but what is *foo[bar] equal to, such as accessing *argv[2]? I am somewhat confused in understanding this, I assumed maybe something like *(*(foo) + bar) but am unsure..
I apologize if this is a simple answer.


