Ver Mensaje Individual
  #2 (permalink)  
Antiguo 16/06/2008, 11:12
CalgaryCorpus
 
Fecha de Ingreso: junio-2008
Ubicación: Seattle, USA
Mensajes: 733
Antigüedad: 16 años, 7 meses
Puntos: 61
Respuesta: error tonto: function was not declared in this scope

2 opciones

Código:
void Hola();

void MostrarSaludo()
{
...

}
o

Código:
void MostrarSaludo()
{
   void Hola();

...

}