Retourner au contenu associé (dépêche : Interview de Bjarne Stroustrup)
Posté par Simon_N le 12 juin 2002 à 17:28. En réponse à la dépêche Interview de Bjarne Stroustrup. Évalué à 2.
AltStyle によって変換されたページ (->オリジナル) / アドレス: モード: デフォルト 音声ブラウザ ルビ付き 配色反転 文字拡大 モバイル
[^] # Re: c++ su><or
Posté par Simon_N . En réponse à la dépêche Interview de Bjarne Stroustrup. Évalué à 2.
void toto(void *(*f)(void *))
{
f(0);
}
char *titi(char *x)
{
cout << "OK" << endl;
return 0;
}
int main()
{
toto((void *(*)(void *))titi);
}