Welcome to Dream.In.Code
Getting C++ Help is Easy!

Join 132,673 C++ Programmers for FREE! Get instant access to thousands of C++ experts, tutorials, code snippets, and more! There are 1,171 people online right now. Registration is fast and FREE... Join Now!




Rerurning Matrices and pointers to them

 
Reply to this topicStart new topic

Rerurning Matrices and pointers to them

Quboid
post 2 Sep, 2007 - 05:59 PM
Post #1


New D.I.C Head

*
Joined: 23 Jul, 2007
Posts: 5


My Contributions


hey all,

I am doing some homework here (for tomorrow) and the last few programs seem a bit tricky. I have the logic for the one i am doing now down already, however, it would require me returning a matrix from my function. I am not to keen on trying to return a matrix, instead i am looking at return a pointer to matrix created.

how do i declare the function in this case?, and how do i declare the matrix in question?

thanks a million
User is offlineProfile CardPM

Go to the top of the page

Bench
post 3 Sep, 2007 - 03:20 AM
Post #2


D.I.C Addict

Group Icon
Joined: 20 Aug, 2007
Posts: 602



Thanked 10 times

Dream Kudos: 150

Expert In: C/C++

My Contributions


Is this C or C++? What are you using to represent your matrix? an array?

If possible, don't return anything (except maybe a bool in C++, or an int in C to indicate success/failure). Arrays are generally passed by pointer by default

Assuming you declare your matrix as a 2D array something like this
int my_matrix[3][3]

You can modify your matrix directly just through the function parameter
bool do_something( int matr[3][3] )
- Despite appearances, matr here is actually a pointer. its type is int (*)[3] . Any operations on matr that you perform here will reflect directly on to your original matrix.

This post has been edited by Bench: 3 Sep, 2007 - 03:21 AM
User is offlineProfile CardPM

Go to the top of the page

Reply to this topicStart new topic
Time is now: 11/23/08 06:14AM

Live C++ Help!

C++ Tutorials

Reference Sheets

C++ Snippets

Bye Bye Ads

Free DIC T-Shirt

T-Shirt Example

Related Sites

Monthly Drawing

Thumb Drive

Partners

Top Contributors

Top 10 Kudos This Month