string 401 B

1234567891011121314151617181920212223242526
  1. void wusi(const int** b) {
  2. test("Const Wusi");
  3. }
  4. void wusi(int** b) {
  5. test("Wusi");
  6. }
  7. void main() {
  8. const int* a = "2allo";
  9. a = "Hallo";
  10. const int** b = &a;
  11. test(a == *b);
  12. test(*a);
  13. test(a[0]);
  14. test(a[1]);
  15. test(a[2]);
  16. test(a[3]);
  17. test(a[4]);
  18. test(a);
  19. test(length(a));
  20. int** n = nullptr;
  21. wusi(n);
  22. wusi(nullptr);
  23. wusi(b);
  24. }