hi friends..

i have an array same this

int array[] = {225, 335};
int codeguru[2];

i would to insert every bite of array[0]
in codeguru array...

if i do
strcpy , show me an error becouse the imput is
a char* not a int..

how i can??..

output of variables..
codeguru[0] = 2
codeguru[1] = 2
codeguru[2] = 5


thanks!!