#include <iostream>
int main()
{
using namespace std;
int arr[] = {1,2,3,4,5}; //initialization
cout << -3[arr]; //line A
return 0;
}
How is the output of line A -4? Thanks in advance.
#include <iostream>
int main()
{
using namespace std;
int arr[] = {1,2,3,4,5}; //initialization
cout << -3[arr]; //line A
return 0;
}
How is the output of line A -4? Thanks in advance.