Skip to content

Instantly share code, notes, and snippets.

@fbs
Created April 29, 2011 17:09
Show Gist options
  • Save fbs/948633 to your computer and use it in GitHub Desktop.
Save fbs/948633 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main(void)
{
char buf[] = "string";
char * str = buf;
printf("hallo %x\n", (int)str);
return 0;
}
/*
gcc a.c
a.c: In function ‘main’:
a.c:6:23: warning: cast from pointer to integer of different size
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment