#include <iostream>#include <sstream>int main() { int i = 100; std::stringstream ss; ss << i; fprintf(stderr, ss.str().c_str());}
No comments:
Post a Comment