Skip to content

Instantly share code, notes, and snippets.

@fjolnir
Created July 26, 2012 14:10
Show Gist options
  • Save fjolnir/3182269 to your computer and use it in GitHub Desktop.
Save fjolnir/3182269 to your computer and use it in GitHub Desktop.
char str[] = "abcdefg";
for(int i = 0, j = strlen(str)-1; i < j; ++i, --j) {
str[i] = str[i] ^ str[j];
str[j] = str[j] ^ str[i];
str[i] = str[i] ^ str[j];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment