二维函数作为参数

Posted YORU

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了二维函数作为参数相关的知识,希望对你有一定的参考价值。

二维函数作为参数

#include <iostream>
using namespace std;

void func(int* arr, int n, int m)
{
    cout << arr[n*m-1] << endl;
    cout << "test success" << endl;
}

int main()
{
    int arr[2][2] = { 1, 2, 3, 4 };
    dfs(arr[0], 2, 2);
    printf("hello world.\n");
    system("pause");
    return 0;
}

如果写成

void func(int arr[][10], int n)
{
    cout << "确定第二维的话又怎么能有通用性呢" << endl;
}

 

以上是关于二维函数作为参数的主要内容,如果未能解决你的问题,请参考以下文章

C-二维数组作为函数参数, 字符数组

c语言中怎么用二维数组作为函数参数

如何将二维数组作为函数参数

二维数组指针作为函数参数传递

c语言中怎么用二维数组作为函数参数

二维函数作为参数