document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. int *ptrX; //Declaracion del Puntero siempre con *
  2. int asdfghjkl; //Declaracion de Variable
  3. asdfghjkl=5;
  4. ptrX=&asdfghjkl; //Apuntando a la variable
');