472,953 Members | 1,656 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,953 software developers and data experts.

how to return an array from function

Hi mates

I want to know a simple program of return array from function ? Do I
need to use pointer to return the address of the first element in an
array.

Isaac
Nov 13 '05 #1
4 157905
In article <88**************************@posting.google.com >, Isaac wrote:
Hi mates

I want to know a simple program of return array from function ? Do I
need to use pointer to return the address of the first element in an
array.

#include <stdlib.h> /* for malloc(), free(), and NULL */

int *int_arr_allocator(int length)
{
int *arr;

arr = malloc(length*sizeof *arr);
if (arr == NULL) {
/* handle error */
}

return arr;
}

int main(void)
{
int *myarr;

/* allocate an array of length 10 */
myarr = int_arr_allocator(10);

/* use the array */

/* free the array */
free(myarr);

return 0;
}
--
Andreas Kähäri
Nov 13 '05 #2
fp*****@yahoo.co.uk (Isaac) wrote in message news:<88**************************@posting.google. com>...
Hi mates

I want to know a simple program of return array from function ? Do I
need to use pointer to return the address of the first element in an
array.

Isaac


Hi Isaac,

Besides the technique already posted, which returns a pointer to a
malloced array, there is another simple trick often used to return an
array from a function. It goes this way.

[code not tested]

struct retarr {
char arr_to_be_ret[20]; /* May be nitpicked :) Better still, use the
preprocessor */
};
struct retarr ArrayReturner(void);

int main(void) {
struct retarr arrcollect;
arrcollect=ArrayReturner();
/* Do whatever you want with the returned array
arrcollect.arr_to_be_ret[] */
/* For what to return here, look at the other threads , its not
quite trivial.
However for all purposes, just letting the main fall off is good
enough
for the standard */
}
struct retarr ArrayReturner(void) {
struct retarr arrobj;
int i;
for(i=0;i<20;i++) { /* Here's why the above comment was valid
i<(what) */
arrobj.arr_to_be_ret[i]=i; /* Or whatever you want to do with the
array */
}
return arrobj;
}

Regards,
Anupam
Nov 13 '05 #3
fp*****@yahoo.co.uk (Isaac) wrote in message news:<88**************************@posting.google. com>...
Hi mates

I want to know a simple program of return array from function ? Do I
need to use pointer to return the address of the first element in an
array.

Isaac


This covers most of the possible variations. The first two methods
are the most common (using pointers to the base type, rather than
pointers to arrays of the base type).

#include <stdlib.h>
#include <stdio.h>

/*
** Allocate space to hold _size_ ints, return pointer to
** base address as function return value. This is the
** most common method.
*/
int *newa1 (size_t size)
{
int *ap;

ap = malloc (sizeof *ap * size);
if (!ap)
{
printf ("newa1: malloc failed\n");
}
return ap;
}

/*
** Allocate space to hold _size_ ints, return pointer to
** base address as function parameter
*/
void newa2 (size_t size, int **ap)
{
*ap = malloc (sizeof **ap * size);
if (!*ap)
{
printf ("newa2: malloc failed\n");
}
}

/*
** Allocate space for fixed-size array of int, return pointer
** to array as function return value. Not generally used,
** since array sizes are fixed and must be known ahead of time.
**
** The declaration reads as
**
** newa3 -- newa3
** is a function -- newa3()
** taking no parameters -- newa3(void)
** returning a pointer -- *newa3(void)
** to a 10 element array -- (*newa3(void))[10]
** of int -- int (*newa3(void))[10]
*/
int (*newa3 (void))[10]
{
int (*ap)[10];

ap = malloc (sizeof *ap);
if (!*ap)
{
printf ("newa3: malloc failed\n");
}
return ap;
}

/*
** Allocate space for a fixed-size array of int, return pointer
** to array as function parameter
*/
void newa4 (int (**ap)[20])
{
*ap = malloc (sizeof **ap);
if (!*ap)
{
printf ("newa4: malloc failed\n");
}
}

int main (void)
{
int *a1, *a2; /* a1 and a2 are pointers to int */
int (*a3)[10], (*a4)[20]; /* a3 and a4 are pointers to arrays of
int */
int i;

a1 = newa1 (10); /* function call */
if (a1) /* test */
a1[0] = 0; /* assignment */

newa2 (20, &a2);
if (a2)
a2[1] = 1;

a3 = newa3 ();
if (a3)
(*a3)[2] = 2;

newa4 (&a4);
if (a4)
(*a4)[3] = 3;

return 0;
}

Important things to remember:

a1, a2 -- pointers to int.
*a1, *a2 -- int values
a3, a4 -- pointers to arrays of int
*a3, *a4 -- arrays of int values

The spaces that a1 and a2 point to may be resized using realloc().
The spaces pointed to by a3 and a4 may not be resized.

*a1 = 0; /* legal, equivalent to a1[0] = 0; */
*a3 = 0; /* illegal; *a3 is an array type, not an int type */

IME, using pointers to arrays (a3 and a4) is not very common, since
the primary reasons you're using dynamic memory are a) you don't know
how much space you'll need until runtime, and b) you want to be able
to resize that space as needed. However, I thought I'd toss that in
for completeness' sake.
Nov 13 '05 #4
In <88**************************@posting.google.com > fp*****@yahoo.co.uk (Isaac) writes:
I want to know a simple program of return array from function ? Do I
need to use pointer to return the address of the first element in an
array.


Show us how you allocate the array, first.

Dan
--
Dan Pop
DESY Zeuthen, RZ group
Email: Da*****@ifh.de
Nov 13 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
by: Andrew Poulos | last post by:
If I'm searching for an occurance of a value in a multi-dimensional array how can I get it's index returned as an array, if found? For example, if: foo = new Array(); foo = , 5, , 9, 10]; ...
6
by: Neo | last post by:
Dear All, I want to know how a subroutine should return an array of values to the main program. From the main program, I call a sub-routine 'get_sql' which then fetches data from oracle db using...
8
by: M. Moennigmann | last post by:
Dear all: I would like to write a function that opens a file, reads and stores data into an 2d array, and passes that array back to the caller (=main). The size of the array is not known before...
23
by: Nascimento | last post by:
Hello, How to I do to return a string as a result of a function. I wrote the following function: char prt_tralha(int num) { int i; char tralha;
31
by: CeZaR | last post by:
Hi, How can i specify the return type of a function returning a managed array of chars. If i try to write: "char __gc func()" i get an error! How can i do that? Thanks!
4
by: Woody Splawn | last post by:
How would I pass an array back to a sub routine from a function? That is, I have a function that looks like this Public Function arrayTest() As Array Dim states() As String = { _ "AZ", "CA",...
7
by: nafri | last post by:
hello all, I want to create a function that returns the first element of the Array that is input to it. However, the Input Array can be an Array of points, double, or anyother type, which means...
7
by: ashu | last post by:
look at code #include<stdio.h> int *mult(void); int main(void) { int *ptr,i; ptr=mult; for(i=0;i<6;i++) { printf("%d",*(ptr++));
18
by: Pedro Pinto | last post by:
Hi there once more........ Instead of showing all the code my problem is simple. I've tried to create this function: char temp(char *string){ alterString(string); return string;
0
by: lllomh | last post by:
Define the method first this.state = { buttonBackgroundColor: 'green', isBlinking: false, // A new status is added to identify whether the button is blinking or not } autoStart=()=>{
0
by: Mushico | last post by:
How to calculate date of retirement from date of birth
2
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 4 Oct 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM) The start time is equivalent to 19:00 (7PM) in Central...
0
tracyyun
by: tracyyun | last post by:
Hello everyone, I have a question and would like some advice on network connectivity. I have one computer connected to my router via WiFi, but I have two other computers that I want to be able to...
2
by: giovanniandrean | last post by:
The energy model is structured as follows and uses excel sheets to give input data: 1-Utility.py contains all the functions needed to calculate the variables and other minor things (mentions...
4
NeoPa
by: NeoPa | last post by:
Hello everyone. I find myself stuck trying to find the VBA way to get Access to create a PDF of the currently-selected (and open) object (Form or Report). I know it can be done by selecting :...
1
by: Teri B | last post by:
Hi, I have created a sub-form Roles. In my course form the user selects the roles assigned to the course. 0ne-to-many. One course many roles. Then I created a report based on the Course form and...
3
by: nia12 | last post by:
Hi there, I am very new to Access so apologies if any of this is obvious/not clear. I am creating a data collection tool for health care employees to complete. It consists of a number of...
0
isladogs
by: isladogs | last post by:
The next online meeting of the Access Europe User Group will be on Wednesday 6 Dec 2023 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, Mike...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.