C++33

PHOTO EMBED

Sat Sep 17 2022 12:28:41 GMT+0000 (Coordinated Universal Time)

Saved by @kodekutulisanku #c++

#include <iostream>
using namespace std;
int main()
{
  int array[] = {10, 20, 30};
  cout << -2[array];
  return 0;
}
content_copyCOPY