Retourner au contenu associé (journal : printf debugging considered harmful)
Posté par peau chat le 07 septembre 2006 à 07:42. En réponse au journal printf debugging considered harmful. Évalué à 3.
AltStyle によって変換されたページ (->オリジナル) / アドレス: モード: デフォルト 音声ブラウザ ルビ付き 配色反転 文字拡大 モバイル
# Heisenbug...
Posté par peau chat . En réponse au journal printf debugging considered harmful. Évalué à 3.
[aegir@dell ~]$ cat t.c
#include <stdio.h>
int main()
{
int a=10;
printf("%d %d\n",(int)(a*.3+a*.7),(int)(10*.7+10*.3));
}
[aegir@dell ~]$ gcc -O2 t.c ; ./a.out
10 10
[aegir@dell ~]$ gcc -g3 t.c ; ./a.out
9 10
[aegir@dell ~]$
À part ça, GNU/Linux est un système parfait ;)