Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

Prev Up HomeNext

Calling it from C

Now let us call our result returning C++ function from C:


View this code on Github

Running this C program yields:

to_string(9) fills buffer with '9' of 1 characters
to_string(99) fills buffer with '99' of 2 characters
to_string(999) fills buffer with '999' of 3 characters
to_string(9999) failed with error code 105 (No buffer space available)

Last revised: October 20, 2017 at 02:06:07 +0100


Prev Up HomeNext