Retourner au contenu associé (entrée de forum : Structures...)
Posté par alberthier (site web personnel) le 15 septembre 2004 à 11:19. En réponse au message Structures.... Évalué à 2.
AltStyle によって変換されたページ (->オリジナル) / アドレス: モード: デフォルト 音声ブラウザ ルビ付き 配色反転 文字拡大 モバイル
# Petite erreur
Posté par alberthier (site web personnel) . En réponse au message Structures.... Évalué à 2.
struct structure *wazaa ( )
{
struct structure *to_ret;
to_ret = malloc(sizeof(struct structure));
to_ret->a = malloc (20*sizeof(char));
to_ret->a = "aaa";
to_ret->b = malloc (20*sizeof(char));
to_ret->b = "bbb";
to_ret->c = malloc (20*sizeof(char));
to_ret->c = "ccc";
return(to_ret);
}