Click here to Skip to main content
Click here to Skip to main content

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

By , 8 May 2010
 

Introduction

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

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

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

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)

About the Author

About me:
I attended programming School and I have a degree in three 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've gotten paid to teach coding. I am roughly 20 years old and i have been a teacher's assistant in programming ,
i have held a lecture in Visual basic 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 about a dozen small simple applications and games.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralTerriblememberMember 15069667-Jun-10 6:56 
GeneralMy vote of 1memberAli BaderEddin8-May-10 12:44 
GeneralRe: My vote of 1memberSledgeHammer019-May-10 7:48 
GeneralMy vote of 1memberMichel Renaud8-May-10 8:00 
GeneralMy vote of 1memberSledgeHammer018-May-10 7:20 
GeneralRe: My vote of 1memberAli BaderEddin8-May-10 12:41 
GeneralRe: My vote of 1memberSledgeHammer019-May-10 7:47 
GeneralRe: My vote of 1memberAli BaderEddin10-May-10 9:02 
Generalyou godda be kiddingmemberJohnWallis428-May-10 4:07 
WTF | :WTF: and I've blast'n my brain using pointers the whole time. OMG | :OMG:
Questionthis is a joke, right?memberxliqz8-May-10 2:38 

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

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130619.1 | Last Updated 8 May 2010
Article Copyright 2010 by Clark Kent SuperCoder
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid