Skip to content

Instantly share code, notes, and snippets.

@pkrll
Created May 26, 2019 12:02
Show Gist options
  • Save pkrll/36e94bb6a9abcc244404ee039aede002 to your computer and use it in GitHub Desktop.
Save pkrll/36e94bb6a9abcc244404ee039aede002 to your computer and use it in GitHub Desktop.
Question 2
int main() {
//!showGraph()
char *a = "Foo";
char b[2] = "42";
char c[2] = "84";
a = c;
a += 2;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment