You are taking quiz cppquiz.org/q/ebnuc. After 0 of 10 questions, you have 0.00 points.

Question #41 Difficulty: 2

According to the C++17 standard, what is the output of this program?

    #include <iostream>
int main() {
  std::cout << 1["ABC"];
}

Hint:

§[expr.sub]¶1 in the standard says "The expression E1[E2] is identical (by definition) to *((E1)+(E2))".

Answer:

Mode : Quiz

If you want to quit the current quiz and go back to training mode, click here.