Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C++: copy array

Tags:

c++

Is it possible to do something like this in C++ (can't test it myself right now)?

int myarray[10] = {111,222,333,444,555,666,777,888,999,1234};

void functioncc()
{
 int temparray = myarray;
 for(int x=0; x<temparray.length; x++){
    .... do something
 }

}

And maybe this (but i dont think it is):

int array1[5] = {0,1,2,3,4,5,6,7,8,9};
int array2[5] = {9,8,7,6,5,4,3,2,1,0};

void functioncc(int arid)
{
  temparray[10] = "array"+arid;
  ........

}

I can do stuff like that in JavaScript, but like I said - don't think it would be possible in C++.

Thanks for your time.

like image 609
jack moore Avatar asked Apr 08 '26 08:04

jack moore


2 Answers

#include <cstring>

int temparray[10] ;
memcpy (temparray, myarray, sizeof (myarray)) ;
like image 193
TonyK Avatar answered Apr 09 '26 20:04

TonyK


Sure.

int myarray[] = {111,222,333,444,555,666,777,888,999,1234};

void function() {
    std::vector<int> temparray(std::begin(myarray), std::end(myarray));
}

Do note that the use of static non-const variables in this way is really looked down on, and if you pass them to other functions, you will have to also pass the "end" pointer.

However, C++ is so distinct from Javascript, seriously, just don't bother. If you need to code C++, get an actual C++ resource and learn it. The syntax for the basic stuff is the ONLY thing in common.

like image 25
Puppy Avatar answered Apr 09 '26 21:04

Puppy



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!