Пожалуйста, прочтите новое правило об ограничении использования AI-инструментов. ×

Блог пользователя mathemage

Автор mathemage, 10 лет назад, По-английски

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...

  • Проголосовать: нравится
  • 0
  • Проголосовать: не нравится

»
10 лет назад, # |
  Проголосовать: нравится +13 Проголосовать: не нравится

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

»
10 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

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

»
10 лет назад, # |
Rev. 2   Проголосовать: нравится +5 Проголосовать: не нравится

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