Skip to content

Instantly share code, notes, and snippets.

@velotiotech
Created July 19, 2024 05:59
Show Gist options
  • Save velotiotech/e0ecd95da6dba2791ee91443b7e12380 to your computer and use it in GitHub Desktop.
Save velotiotech/e0ecd95da6dba2791ee91443b7e12380 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main() {
char c = 'D';
char *cp = &c;
int *ip = (int*)cp;
*ip = 0x64567842;
printf("%c\n", c);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment