Is it possible to use notation [] with pointers in C?

Yes this is possible. However, if you are specifying it as a static size, you may as well do int m[10] in your declaration.

Leave a Comment