
/* what happens with memory? */

#include <stdio.h>

int main(void)
{
char w0[]="egg";
char w1[]="arg";
char w2[]="pot";

printf("%s\n",w0);
printf("%p\n",w0);
printf("%s\n",w1);
printf("%p\n",w1);

return 0;
}

