Skip to content

Instantly share code, notes, and snippets.

@arrbxr
Created March 23, 2018 03:19
Show Gist options
  • Save arrbxr/468a7b4632e721907c3f637532ff74a6 to your computer and use it in GitHub Desktop.
Save arrbxr/468a7b4632e721907c3f637532ff74a6 to your computer and use it in GitHub Desktop.
void variable deceleration created by arrbxr - https://repl.it/@arrbxr/void-variable-deceleration
#include "stdio.h"
int main(void) {
int a = 10;
void *ptr;
ptr = &a;
printf("%d",*((int *)ptr));
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment