martes, 5 de abril de 2011

C++ APUNTADORES 2

#include <stdio.h>
#include <conio.h>
#include <iostream>
using namespace std;
int main()
{
int a=150;
int *p1,*p2;
p1=&a;
p2=&a;

cout<<"EL VALOR DE A ES: "<<a<<"\n";
cout<<"EL VALOR DE P1 ES: "<<*p1<<"\n";
cout<<"EL VALOR DE P2 ES: "<<*p2<<"\n";

getch();
}

No hay comentarios:

Publicar un comentario