Intellisense in c++ builder?

1k views Asked by At

I'm very disappointed with c++ builder intellisense, so I'm wonder is there any good intellisense that can be used in c++ builder? Something like visual studio have "Visual assist". My current version of builder is 2010, is the x2 have better intellisense?

1

There are 1 answers

4
AlexSavAlexandrov On

I doubt if there is a good C++ compiler...

Code Blocks allows the user to hide all the text within an opening brace and a closing brace.

DevC++ can only give colors to different stuff. And it's really old. I used to use it when I was learning C++ at school.

MS Visual C++ allows the user to hide all the text within a function or class and comments that are longer than one line. This is my personal favorite. But it's a bit heavy for old systems (like my 5 year-old laptop).

If I were you, I'd start testing any compiler I find for some time. This way you can see which one mostly suits you.