language: C++ 4.7.2 (gcc-4.7.2)
date: 787 days 10 hours ago
link:
visibility: public
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <iostream>
 
using namespace std;
 
void f(float* const* p) {}
 
void h(const float* const* p) {}
 
int main() {
    float** p= new float*[5];
    f(p);
    h(p);
}