1234567891011121314151617181920212223242526 |
- void wusi(const int** b) {
- test("Const Wusi")
- }
- void wusi(int** b) {
- test("Wusi")
- }
- void main() {
- const int* a = "2allo"
- a = "Hallo"
- const int** b = &a
- test(a == *b)
- test(*a)
- test(a[0])
- test(a[1])
- test(a[2])
- test(a[3])
- test(a[4])
- test(a)
- test(length(a))
- int** n = nullptr
- wusi(n)
- wusi(nullptr)
- wusi(b)
- }
|