vote up 2 vote down star

Hi there,

It's been a long since I don't use C language, and this is driving me crazy. I have an array of structs, and I need to create a function which will copy one array to another (I need an exact copy), but I don't know how to define the function call. I guess I need to use pointers, but when I try it gives me an error.

struct group{
    int weight;
    int x_pos;
    int y_pos;
    int width;
    int height;
};

struct group a[4];
struct group b[4];

copySolution(&a, &b);

That last declaration send me an error. As I said, it's been a long since programming in C, so I'm a bit lost right now :(

flag
whats the prototype of copySolution ?? – vinit dhatrak Nov 7 at 17:54

5 Answers

vote up 10 vote down check

That should do it:

memcpy(&b, &a, sizeof(a));

EDIT: By the way: It will save a copy of a in b.

link|flag
Works like a charm. Thank you! – Víctor Nov 7 at 17:55
good old trusty memcpy. – toto Nov 7 at 18:08
1  
You might add a " if(sizeof(b) >= sizeof(a)) ", check as well. – Fred Nov 7 at 18:10
Fred, yeah, true! In real-world programs that should be done :-) – Johannes Weiß Nov 7 at 19:20
1  
Or more likely an assert, since there's usually nothing much a program can do to compensate for the programmer getting it wrong... – Steve 'onebyone' Jessop Nov 7 at 19:33
show 4 more comments
vote up 0 vote down

This has a feel of poorly masqueraded homework assignment... Anyway, given the predetermined call format for copySolution in the original post, the proper definition of copySolution would look as follows

void copySolution(struct group (*a)[4], struct group (*b)[4])
{
  /* whatever */
}

Now, inside the copySolution you can copy the arrays in any way you prefer. Either use a cycle

void copySolution(struct group (*a)[4], struct group (*b)[4])
{
  const struct group *pb, *pbe;
  struct group *pa;

  for (pa = *a, pb = *b, pbe = pb + sizeof *b / sizeof **b; 
       pb != pbe; 
       ++pa, ++pb)
    *pa = *pb;
}

or use memcpy as suggested above

void copySolution(struct group (*a)[4], struct group (*b)[4])
{
  memcpy(b, a, sizeof *b);
}

Of course, you have to decide first which direction you want your arrays to be copied in. You provided no information, so everyone just jumped to some conclusion.

link|flag
It's kind of homework, since it's my final project career :P truly, It's been a while and me an C could never get along each other :) – Víctor Nov 7 at 18:19
vote up 0 vote down

As Johannes Weiß says, memcpy() is a good solution.

I just want to point out that you can copy structs like normal types:

for (i=0; i<4; i++) {
    b[i] = a[i]; /* copy the whole struct a[i] to b[i] */
}
link|flag
vote up -1 vote down

The compiler has no information about the size of the array after passing them as pointer into a function. So you often need a third parameter: The size of the arrays to copy.

A solution (without any error checking) could be:

void copySolution(struct group* a, struct group* b, size_t size) {
    memcpy(a, b, size * sizeof(*a));
}
link|flag
1  
Not true. The original code passes the arrays as pointers of struct group (*)[4] type not as pointers struct group * type. With properly declared copySolution the array size is embedded in the pointer type. With your definition the original code simply won't compile, not only because of the missing third parameter, but also because the argument type doesn't match the parameter type. – AndreyT Nov 7 at 18:06
I'm trying also that, since I need to pass the array to another function, and it says this: simulated_annealing.c: In function ‘main’: simulated_annealing.c:39: warning: passing argument 1 of ‘chooseNeighbour’ from incompatible pointer type The code: chooseNeighbour(&candidateSolution, nGroups) void chooseNeighbour(struct group *g[], int size){ printf("%i\n", g[0]->weight); } – Víctor Nov 7 at 18:15
@Víctor : Your call is wrong. Should be chooseNeighbour(candidateSolution, nGroups). Note: no & operator. – AndreyT Nov 7 at 18:20
vote up -2 vote down

The easiest way is probably

 b=a

although a solution with memcpy() will also work.

link|flag
b=a; does not work when, as is the case here, a and b are arrays. – pmg Nov 7 at 18:10
b=a simply copies the pointer value of a to b, which is not what OP wants – Ponting Nov 7 at 18:11
b=a does not work -- arrays are not lvalues in C, so they cannot be assigned like this. – Adam Rosenfield Nov 7 at 18:11
You could get a pointer to point at the same array with structs, but that is not a copy then. – Fred Nov 7 at 18:14
@No Name: get a name! and that's wrong too. b cannot be assigned to since it's an array. – pmg Nov 7 at 18:14
show 2 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.