martes, 5 de abril de 2011

C++ VALORES POR PARAMETRO 1

#include <stdio.h>
#include <conio.h>
#include <iostream>
using namespace std;
int valores(int a,int b)
{
a=1001;
b=1001;
cout<<"LOS VALORES DENTRO DE NUESTRA FUNCIÓN SON "<<a<<"y "<<b<<"\n\n";
}

int main()
{
int grande,chico;
grande=10000;
chico=200;
cout<<"LOS VALORES ANTES DE LLAMAR A LA FUNCIÓN SON: "<<grande<<" chico: "<<chico<<"\n";
valores(grande,chico);
cout<<"DESPUES DE LLAMAR A LA FUNCIÓN: "<<grande<<" chico "<<chico<<"\n";

getch();
}//NOTA LOS VALORES NO CAMBIAN

No hay comentarios:

Publicar un comentario