Pointer C

#include 
int main(void)
{
  char *p;
  p = "one two three";
  printf(p);
  return 0;
}