What's the meaning of this pointer to pointer syntax?

前端 未结 0 407
隐瞒了意图╮
隐瞒了意图╮ 2020-11-21 23:16

So, I have the following code to create a matrix using pointers:

    size_t n;
    cin >> n;
    int **a = new int*[n];

    for (size_t i = 0; i < n         


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