C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
C++ Math nexttoward()The nexttoword() function represents the next representable value in a specific direction. The nextafter() and nexttoward() both the functions work similar and return the same value. The only difference occurs in their syntax. Syntaxfloat nexttoward(float from, long double to); double nexttoward(double from, long double to); long double nexttoward(long double from, long double to); double nexttoward(integral from, long double to); Parameter( from , to ) : These are the floating point values. Return value
ExampleLet's see a simple example. #include Output: Values of from and to are:0, -1 -3.6452e-4951 In the above example, the 'from' and 'to' are of different type. The nexttoward() function returns the value i.e -3.6452e-4951.
Next TopicC++ Math Functions
|