I need to initialize a h x h matrix in C with spaces.
h x h
How to properly do it without cycles?
int h = 8; char arr[h][h] = {{\' \'}}; // does