Int arrays in Objective-C
        Posted  
        
            by james.ingham
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by james.ingham
        
        
        
        Published on 2010-05-09T14:58:51Z
        Indexed on 
            2010/05/09
            15:08 UTC
        
        
        Read the original article
        Hit count: 212
        
So I have this:
int a[4] = { 0, 1, 2, 3 };
And then I want to make a new int array:
int b[4];
What is the easiest way to make b[] = a[]?
© Stack Overflow or respective owner