#include <stdio.h>
#include <string.h>

main()
{

  int y;
  char *x;

  strcpy(x,"Hello world! This is a long string");
  printf("Valor de x = %s\n", x);
}
