0

Recently I have tried to use some Advance c++ functions in CodeBlocks but all the time it throw errors like " according to c++ 98....... ". If CodeBlocks uses an old version of c++ can I update it to c++11 or c++14. I am just a new learner and cordially requesting you to help if you know the answer.

drescherjm
  • 10,365
  • 5
  • 44
  • 64
Maruf Hasan
  • 11
  • 1
  • 2
  • 3
    I really advise you take out time to learn the very rudiments of the language. Try to learn about compilers, for instance. Codeblocks is an IDE that works with the help of a compiler. There are different types of compilers and each with different versions, depending on the C++ standard they support. – BroVic Nov 10 '19 at 08:14
  • The answer could depend on what compiler is used. `Code::Blocks` is an IDE not a compiler. – drescherjm Nov 10 '19 at 13:15

1 Answers1

4

You can set compiler version and language standart in settings. See this How can I add C++11 support to Code::Blocks compiler?

Nederes
  • 125
  • 1
  • 10