C programming Interview questions and answers: Write a c program which passes two dimension array to

C programming Interview questions and answers: Write a c program which passes two dimension array to

瀏覽:715
日期:2025-06-10
How to pass two dimensional array to a function in c #include #define M 3 #define N 5 void fstore2D(int a[][N]); void fretrieve2D(int a[][N]); int main(){ int a[M][N]; printf("Input data in matrix (%d X %d)\n", M, N); fstore2D(a); fretrieve2D(a); ret...看更多