Please read the new rule regarding the restriction on the use of AI tools. ×

mathemage's blog

By mathemage, 10 years ago, In English

Where did GNU C++0x go? Why is it no more among the language options?

Incidentally, can to_string() work with other C++ variants? Or what else to use alternatively for converting from int to string? Solution with stringstream seems too slow to write...

  • Vote: I like it
  • 0
  • Vote: I do not like it

»
10 years ago, # |
  Vote: I like it +13 Vote: I do not like it

GNU C++11 is almost the same. But there's a bug.

»
10 years ago, # |
  Vote: I like it 0 Vote: I do not like it

Maybe you should use C constructions, sprintf for example, if you're worried about time limit.

»
10 years ago, # |
Rev. 2   Vote: I like it +5 Vote: I do not like it

According to the wiki page C++0x is the former name of C++11. So I guess C++11 is the same .