I am familiar with python's indexing system but not with C++'s... so please help me
I want to index an array negatively...
I have tried
int myarray[5] = {1,2,3,4,5};
cout << myarray[-1];
but it is generating some number very big which is not a part of this array...