Is there a difference between the following two lines and if so what is 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
==
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With