Just trying to compile some code with tcc:
#include<stdio.h>
main ()
{
int x = 10;
int *p;
p = &x;
x = 40;
printf(“%d %d %d %d”,x,&x,p,&p);
}
Trying to learn about pointers and memory addresses and I took the code right out of the book, any help?