C examples for String:String Function
copies char array source to char array target:
void copy(char target[], char source[]) { int j = 0; while((target[j] source[j]) != '\0') ++j; }