fork download
  1. #include <iostream>
  2.  
  3. int main()
  4. {
  5. char text[] = "Vanilla";
  6. std::cout << text[sizeof(text) - 2] << std::endl;
  7. }
Success #stdin #stdout 0s 4304KB
stdin
Standard input is empty
stdout
a