+ 1
How do i read this.
int (*(*(*Fptr)())[20](); how can i say this. explain this.
2 Respuestas
+ 3
1) dereference of a functionpointer to a function
2) you call the function
3) it seems the return value is a address -> you dereference it
4) you get an address again... dereference again
5) it was an array and you acces the 21th element
6) this is a function and you call it (not sure if this is even possible)
but very interessting...
0
nice