string 221 B

1234567891011121314
  1. void main() {
  2. int* a = "öallo";
  3. a[0] = 'H';
  4. int** b = &a;
  5. test(a == *b);
  6. test(*a);
  7. test(a[0]);
  8. test(a[1]);
  9. test(a[2]);
  10. test(a[3]);
  11. test(a[4]);
  12. test(a);
  13. test(length(a));
  14. }