Since 5/7/2012 2:26:13 PM, raleighnc7 has written 1 articles and participated in 1 conversations. raleighnc7 signature: raleighnc7
raleighnc7's articles:
Items(1) /1
Why Is My Function Slow?2134 (10/30/2009 8:39:19 AM) comp.lang.c I make abs() function. It is same for original library. But, it is slow. int myAbs ( int number ) { return( number>0 ? number : -number ); } I checked its running time, so It spend more than triple running t... hm
raleighnc7's replies:
Items(1) /1
Why Is My Function Slow?2134 (10/30/2009 8:39:19 AM) comp.lang.c I make abs() function. It is same for original library. But, it is slow. int myAbs ( int number ) { return( number>0 ? number : -number ); } I checked its running time, so It spend more than triple running t... raleighnc7(2)