Skip to content

Instantly share code, notes, and snippets.

@lokka30
Created August 8, 2022 12:12
Show Gist options
  • Select an option

  • Save lokka30/f58e6815229015d83f4dc7b0b29422d2 to your computer and use it in GitHub Desktop.

Select an option

Save lokka30/f58e6815229015d83f4dc7b0b29422d2 to your computer and use it in GitHub Desktop.
C Pointers Test
#include <stdio.h>
int main() {
char c = 'A';
char* ptr = &c;
char deref = *ptr;
putchar(deref);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment