how to initialize a matrix in C

前端 未结 0 1369
梦毁少年i
梦毁少年i 2020-12-11 01:26

I need to initialize a h x h matrix in C with spaces.

How to properly do it without cycles?

int h = 8;
char arr[h][h] = {{\' \'}}; // does         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题