Click here to Skip to main content
15,878,809 members
Articles / Programming Languages / C++
Tip/Trick

How to Pass a Two Dimensional Array to a Function (C++)

Rate me:
Please Sign up or sign in to vote.
2.00/5 (6 votes)
8 May 2010CPOL 57.8K   3   11
How to pass a two dimensional array to a function (C++)

Introduction

Simply define a size of the array in the function header like this:

C++
void someFunc(int buff[3][2])

and make a call to the function with another two dimensional array:

C++
void add(int swap[3][2], int swap2[3][2]) 		/* Function definition 	*/
{
  int temp,i;

  for (i=0; i<3; i++)
  {
    temp       = swap[i][0];
    swap[i][0] = swap[i][1];
    swap[i][1] = temp;
  }
  return;
}

void display(int array[3][2],int array2[3][2]  ) 	/* Function definition 	*/
{
  int count=0,count1=0;

  for (count=0;count<3;count++)
    for (count1=0;count1<2;count1++)
      printf("%d ", array[count][count1]);

   printf("\n");
  puts("");
}

int main()
{
	int i[3][2]=  { {1,2}, {3,4}, {5,6}  };

  display(i,i);				/* i is a pointer	*/

  add(i,i);

  display(i,i);

  return 0;
}	

History

  • 8th May, 2010: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Sweden Sweden
About me:
I attended programming college and I have a degree in three most famous and successful programming languages. C/C++, Visual Basic and Java. So i know i can code. And there is a diploma hanging on my wall to prove it.
.
I am a professional, I am paid tons of cash to teach or do software development. I am roughly 30 years old .

I hold lectures in programming. I have also coached students in C++, Java and Visual basic.

In my spare time i do enjoy developing computer games, and i am developing a rather simple flight simulator game
in the c++ programming language using the openGL graphics libray.

I've written hundreds of thousands of code syntax lines for small simple applications and games.

Comments and Discussions

 
GeneralMy vote of 1 Pin
Aneet D N29-Sep-14 20:56
Aneet D N29-Sep-14 20:56 
GeneralTerrible Pin
Member 15069667-Jun-10 6:56
Member 15069667-Jun-10 6:56 
GeneralMy vote of 1 Pin
Ali BaderEddin8-May-10 12:44
Ali BaderEddin8-May-10 12:44 
GeneralRe: My vote of 1 Pin
SledgeHammer019-May-10 7:48
SledgeHammer019-May-10 7:48 
GeneralMy vote of 1 Pin
Michel Renaud8-May-10 8:00
Michel Renaud8-May-10 8:00 
GeneralMy vote of 1 Pin
SledgeHammer018-May-10 7:20
SledgeHammer018-May-10 7:20 
GeneralRe: My vote of 1 Pin
Ali BaderEddin8-May-10 12:41
Ali BaderEddin8-May-10 12:41 
GeneralRe: My vote of 1 Pin
SledgeHammer019-May-10 7:47
SledgeHammer019-May-10 7:47 
GeneralRe: My vote of 1 Pin
Ali BaderEddin10-May-10 9:02
Ali BaderEddin10-May-10 9:02 
Generalyou godda be kidding Pin
JohnWallis428-May-10 4:07
JohnWallis428-May-10 4:07 
Questionthis is a joke, right? Pin
xliqz8-May-10 2:38
xliqz8-May-10 2:38 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.