c++ - Double pointer difference when using with array -


is there difference between following 2 lines , if it? (in c++)

float (**a[10]); float *(*a[10]); 

no. try

float (**a[10]); float *(*b[10]); if (typeid(a) == typeid(b))     printf("==\n"); else     printf("!=\n"); 

the output is

== 

Comments

Popular posts from this blog

Python Kivy ListView: How to delete selected ListItemButton? -

asp.net mvc 4 - A specified Include path is not valid. The EntityType '' does not declare a navigation property with the name '' -