04/08/2010, 09:20
|
| | Fecha de Ingreso: julio-2010
Mensajes: 153
Antigüedad: 14 años, 5 meses Puntos: 1 | |
Respuesta: llamada de funciones [facil] prueba esto
Código C:
Ver original#include <stdio.h> float div(float x , float y ) { return x / y; } int main(int argc, char **argv) { float x, y; return 0; }
|