Skip to content

Instantly share code, notes, and snippets.

@ceduliocezar
Created April 2, 2016 21:19
Show Gist options
  • Save ceduliocezar/e72ee6ca17000ba669a4be36bfe7fa92 to your computer and use it in GitHub Desktop.
Save ceduliocezar/e72ee6ca17000ba669a4be36bfe7fa92 to your computer and use it in GitHub Desktop.
public void copiar(char a1[], char a2[]){
for(int i = 0; i < a1.length; i++){
a2[i] = a1[i];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment