What is the difference between g++ and gcc?

后端 未结 10 2153
无人共我
无人共我 2020-11-22 00:34

What is the difference between g++ and gcc? Which one of them should be used for general c++ development?

10条回答
  •  感情败类
    2020-11-22 00:47

    One notable difference is that if you pass a .c file to gcc it will compile as C.

    The default behavior of g++ is to treat .c files as C++ (unless -x c is specified).

提交回复
热议问题