In C/C++, the main function receives parameters which are of type char*.
char*
int main(int argc, char* argv[]){ return 0; }
While you are able to access to the actual parameters, I think their actual location does not matter at all.