Pointer C

int main(void)
{
  char *p;
  printf("Enter a string: ");
  gets(p);
  return 0;
}