What does “[*]” (star modifier) mean in C? [duplicate]
[*] What is its purpose, why was it added? Purpose is seen when a variable length two dimentional array is used as a function parameter. The function int foo(int n, int m, int a[n][m]) {…} can be prototyped as any of the following int foo(int , int, int [][*]); int foo(int , int, int a[*][*]); … Read more