Call a function to pass a two-dimensional array

Source: Internet
Author: User

An example of transpose a two-dimensional arrayCodeTo explore the problem of passing two-dimensional arrays as parameters.

# Include <stdio. h>
# Define N 3
Int array [N] [N];
Void main ()
{
// Declare the called function in the main function
Void convert (INT array [] [3]);
Int I, J;
Printf ("input array: \ n ");
For (j = 0; j <n; j ++)
For (I = 0; I <n; I ++)
Scanf ("% d", & array [I] [J]);
Printf ("\ n ");
For (j = 0; j <n; j ++)
{
For (I = 0; I <n; I ++)
Printf ("% d \ t", array [I] [J]);
Printf ("\ n ");
}
// Call the matrix transpose Function
Convert (array );
Printf ("\ n ");
For (I = 0; I <n; I ++)
{
For (j = 0; j <n; j ++)
Printf ("% d \ t", array [I] [J]);
Printf ("\ n ");
}
}
Void convert (INT array [] [3])
{
Int I, j, T;
For (I = 0; I <n; I ++)
For (j = 0; j <n; j ++) // sets the element exchange of the array transit matrix.
{
T = array [I] [J];
Array [I] [J] = array [J] [I];
Array [J] [I] = T;
}
}

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.