Skip to content

Instantly share code, notes, and snippets.

@lv7777
Created March 25, 2016 04:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lv7777/ef086dd33d3d724cc0de to your computer and use it in GitHub Desktop.
Save lv7777/ef086dd33d3d724cc0de to your computer and use it in GitHub Desktop.
ブログ。cポインタ
#include <stdio.h>
int main(void) {
// your code goes here
char *str="ab";
printf("%p,%d\n",*str,*str);
printf("%p,%d\n",str,str);
printf("%p,%d\n",&str,&str);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment