jueves, 7 de abril de 2011

C++ APUNTADORES 4

#include <stdio.h>
#include <conio.h>
#include <iostream>
using namespace std;
int main()
{
double a,b,r;
a=20;
b=30;
double *p1,*p2;
p1=&a;
p2=&b;
cout<<"APUNTADOR UNO VALE: "<<*p1<<"\n";
cout<<"PUNTADOR DOS VALE: "<<*p2<<"\n";
r=*p1+*p2;
cout<<"LA SUMA ES: "<<r<<"\n";

getch();
}

No hay comentarios:

Publicar un comentario