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

php - Submit Form Data without Reloading page -

linux - Rails running on virtual machine in Windows -

php - $params->set Array between square bracket -