Error(s) found: '1'

  • Unable to perform the query 'UPDATE cpp_code SET clickthru=clickthru+1 WHERE fid=9'. Table 'cpp_code' is read only.

  • C++ MADE EASY
    Code About Us Tutorial




       
     

    Home > myCode > Absolute Value (inline function)

    November 30, 2009 2:54 am

       

    Absolute Value (inline function)


    Posted on: 2001-09-15 10:19:09
    Number of times viewed: 322

     
     
    inline float inlineAbs(float x)
    {
    	return x<0?-x:x;
    }

    Please Rate this Code:



     «12039» THINKQUEST TEAM C0111571 © 2001. All Rights Reserved.