Skip to content

Instantly share code, notes, and snippets.

@buzzxI
Created October 1, 2023 14:14
Show Gist options
  • Save buzzxI/3a55bc5b39171f0a57d9d9a9cdf6a212 to your computer and use it in GitHub Desktop.
Save buzzxI/3a55bc5b39171f0a57d9d9a9cdf6a212 to your computer and use it in GitHub Desktop.
test from ucloud
#include <csapp.h>
int main() {
int num = 10;
int *sp = &num;
fprintf(stdout, "original:%p:new:%p\n", sp, sp + 1);
fprintf(stdout, "this is a \"\n");
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment