C/C++: Retourner la valeur absolue d’une varaible de type ‘int’ avec ‘abs()’ May 9, 2012 Author: user {filelink=13989} #include #include int main () { int x, y; x = abs( 5 ); y = abs( -5 ); printf (" x = %dn", x); printf (" y = %dn", y); return 0; } Categories: Uncategorized