Skip to content

Instantly share code, notes, and snippets.

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