Remix.run Logo
dnautics 2 hours ago

What is **int[3][5]

thrance an hour ago | parent | next [-]

A pointer to a pointer to a pointer to a pointer of integers.

ori_b 2 hours ago | parent | prev [-]

A syntax error. You need a variable name, not a type name, in the middle.

fusslo an hour ago | parent | next [-]

or a rejected PR

ori_b 2 hours ago | parent | prev [-]

And if you want 'int **arr[a][b]', it's a value that when you say 'x = **arr[m][n]', will evaluate to an int and assign it to x. Postfix has higher precedence than prefix.