Hey Ez
can some one help me on what this code means ...like break it down for because to me it doesn't make sense...why does it print out 58? Is it that "navi [n]" is equivalent to "navi [1]" and if so how come???
here is the code
#include <iostream>
using namespace std;
int navi []={12, 58, 69, 87, 20}
int main () {
int n, a, c;
cout << navi [n];
return (0);
}