C++ Math trunc()The function rounds off the given value towards zero and returns the nearest integral value whose magnitude is not greater than the given value. For example: SyntaxSuppose a number is 'x'. Syntax would be : Note: return_type can be float,double or long double.Parameterx: The value that can be float,double or long double. Return valueIt returns a rounded value of x. Example 1Let's see a simple example when the value of x is positive. Output: The value of x is :8.8 Truncated value of x is :8 Example 2Let's see a simple example when the value of x is negative. Output: The value of x is :-3.9 Truncated value of x is:-3
Next TopicC++ Math Functions
|
JavaTpoint offers too many high quality services. Mail us on h[email protected], to get more information about given services.
JavaTpoint offers college campus training on Core Java, Advance Java, .Net, Android, Hadoop, PHP, Web Technology and Python. Please mail your requirement at [email protected].
Duration: 1 week to 2 week