Forums
New posts
Search forums
Members
Current visitors
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Menu
Log in
Register
Install the app
Install
Forums
Archive
Archive
C Programming
biggest of 3 numbers
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
Reply to thread
Message
[QUOTE="Dik T. Winter, post: 2463273"] Well, assuming those are ints: unsigned int abs(int n) { unsigned int x = n; unsigned int m; m = (1 << (sizeof(int) - 1)) & x; m = (m - (m >> 31)) | m; return (x ^ m) + (1 & m); } Where is the comparison? But, whatever, abs is standard already in C89, and I have no idea how it is implemented... But of course, there is the probability of overflow lurking in that formula. [/QUOTE]
Verification
Post reply
Forums
Archive
Archive
C Programming
biggest of 3 numbers
Top