What will be the output of the following C++ language code?
#include <iostream>
using namespace std;
int main()
int r1 = {1, 24, 33};
cout << -2[r1];
return 0;
}
Answers
Answered by
1
Answer:
community answers by others
Similar questions