Why is my C++ target being linked using gcc?
You probably selected ‘C Executable’ or ‘Executable’ instead of ‘C++ Executable’ as target type when creating it. You can change the target type by right-clicking on it and selecting Properties | Node. • Internal Editor Q: What is the difference between symbol-completion (auto-completion) and word-completion. A: Symbol-completion actually parses C/C++ sources using C/C++ language grammar to offer contextually-appropriate symbols and object attributes. Word-completion scans the current source file and any of its includes for all words matching the characters you have started typing.