We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
int *t;
FatPointer<int> t;
int u[4];
FixedArray<int,4> u
int *v[5];
FixedArray<FatPointer<int>,5> v
int (*w)[6];
FatPointer<FixedArray<int,6> > w;
int *(*c);
FatPointer<FatPointer<int> > c;
int *p, q;
FatPointer<int> p;
int q;
int f();
int g(int,int);
int *(*h)(int*,int*);
FunctionPointer<FatPointer<int>,FatPointer<int>,FatPointer<int> > h;
There was an error while loading. Please reload this page.