malloc d'une structure [VC++] - C++ - Programmation
Marsh Posté le 22-10-2001 à 15:42:21
struct typedef toto { int tutu int tata }struct_toto int main() { struct_toto t t = malloc(sizeof(struct_toto)); (VC++ en veux pas ) return(1); }
Marsh Posté le 22-10-2001 à 15:46:58
stcruct_machin *t; t= (struct_machin *) (malloc....)
[edtdd]--Message édité par BENB--[/edtdd]
Marsh Posté le 22-10-2001 à 16:07:05
Rien à ajouter.
Marsh Posté le 22-10-2001 à 16:59:13
tankx mais javais trouve avant
Make sure you enter the(*)required information where indicate.HTML code is not allowed
Marsh Posté le 22-10-2001 à 15:42:21
struct typedef toto
{
int tutu
int tata
}struct_toto
int main()
{
struct_toto t
t = malloc(sizeof(struct_toto)); (VC++ en veux pas )
return(1);
}