Tema: Una sobre C
Ver Mensaje Individual
  #1 (permalink)  
Antiguo 08/01/2003, 15:11
joja_2
 
Fecha de Ingreso: noviembre-2002
Mensajes: 1.135
Antigüedad: 22 años, 2 meses
Puntos: 2
Una sobre C

quiero utilizar la funcion random y randomize para generar un numero aleatorio entre 0 y 100.

coloco esto:

#include <stdlib.h>
#include <stdio.h>
#include <time.h>


int main(void)
{
int prueba;

randomize();
prueba=random (100);
return 0;
}

me da el error

undefined random y randomize assuming extern returning int

por que?