stdlib.h
Tipo div_t ANSI C
typedef <tipo> div_t;
Un tipo de estructura que es el tipo del valor retornado por la función div.
Ejemplo:
typedef struct {
int quot;
int rem;
} div_t;
|
DJGPP |
typedef struct {
int quot;
int rem;
} div_t;
|
Borland |
typedef struct { int quot, rem; } div_t;
|
Dev-C++ |