martes, 5 de abril de 2011

C++ CAMBIAR EL VALOR POR PARAMETRO 1

#include <stdio.h>
#include <conio.h>
#include <iostream>
using namespace std;

double valor_parametro(double *a, double *b)//ojo son apuntadores
{
*a=1000;
*b=200;
cout<<"LOS VALORES DENTRO DE NUESTRA FUNCION SON: "<<*a<<" y "<<*b<<"\n\n";
}
int main()
{
double g,p;
g=30000;
p=100;
cout<<"LOS VALORES ANTES DE LLAMAR A LA FUNCIÓN SON: "<<g<<" y "<<p<<"\n\n";
valor_parametro(&g,&p);//van a la direccion en memoria y se le pasan los valores de g y p
cout<<"DESPUES DE LLAMAR A LA FUNCIÓN: "<<g<<" y "<<p<<"\n";
getch();
}

No hay comentarios:

Publicar un comentario