As suggested above you can go with VS. VS supports both Managed and Unmanaged C++.
But don't expect C / C++ suggestions and autocompletion to work as good as like as in .NET.
.NET is famous for these things though
Anyway, there's a logic behind that. The reason you get such a good suggestion and auto-completion because of the Metadata which is not there in C/C++. All the codes that are compiled under managed environment CLR creates the metadata file which is actually used by the IDE to read and provide the suggestions and autocompletion.
So, as long as you code in Managed C++ in VS it's fine, but don't expect Unmanaged C++ and C (It's always unmanaged) to be as good as in managed.
Hope that clears your funda
Else, correct me if I'm wrong.![]()
On windows 8.eclipse does not support suggest-as-you-type autocomplete like visual studio.you have press ctrl+space or .. etcOn what platform? Why don't you use visual studio itself? For Unix/Linux platforms, the only major choice is eclipse.
thanks man , I had looked for it once after a friend said he came across it once. Anyway I got comfortable with linux and terminal pretty fastSublimeText supports compiling of C/C++ through build system:
http://www.sublimetext.com/docs/build
http://stackoverflow.com/questions/13670064/sublime-text-2-build-system-for-c-programming-language
Is there any C/C++ IDE that supports predictive text like Microsoft Visual Studio (Intellisense)??
because predictive text makes coding faster. atleast by 10 times if you use MS. as a principle I dont remember the member variables and function signatures. because simple mistakes can lead to very tricky to find bugs. so, I always refer to the manual while writing code, intellisense makes it much faster.Why not without predictive text ?
because predictive text makes coding faster. atleast by 10 times if you use MS. as a principle I dont remember the member variables and function signatures. because simple mistakes can lead to very tricky to find bugs. so, I always refer to the manual while writing code, intellisense makes it much faster.
This made me chuckle. srsly?you are a real programmer
^did you ever introspect about how much time you are spending learning the difference between fget and gets?
language is just a spec. just a tool... to solve problems. spend more time solving problems and less learning the language.
Since they don't know how language works they just assume it works
see, now you understand why I don't remember stuff as a principle? Just to be sure that I am not making any assumptions. simple things like reversing "from" and "to" variables in sprintf can wreck havoc.as a principle I dont remember the member variables and function signatures.
You don't remember the variables and function signatures because of two reasons:
Above 2 are the most probable reasons for the problems you are facing. While Intelligent Code Completion (ICC) is a good thing, you can use it to replace your own creativity too e.g by not reading reference manuals, man pages and standard library documentation when you are not coding. Yes, you read that right, reading reference manuals when you are not coding. I know people who keep entire C language in their heads. You can wake them in the middle of night and ask anything about the variable names and function signatures they wrote 5 years back in their previous company (yes, I am one of them). Where do you think they learned that ? And why you think not keeping the language in your head will make you a faster and better programmer ?
- You did not name them properly (read "Practice of Programming" by Kernighan and Pike)
- You did not follow any coding standard for writing function signatures (read "Practice of Programming" by Kernighan and Pike)
You don't remember the variables and function signatures because of two reasons:
Above 2 are the most probable reasons for the problems you are facing. While Intelligent Code Completion (ICC) is a good thing, you can use it to replace your own creativity too e.g by not reading reference manuals, man pages and standard library documentation when you are not coding. Yes, you read that right, reading reference manuals when you are not coding. I know people who keep entire C language in their heads. You can wake them in the middle of night and ask anything about the variable names and function signatures they wrote 5 years back in their previous company (yes, I am one of them). Where do you think they learned that ? And why you think not keeping the language in your head will make you a faster and better programmer ?
- You did not name them properly (read "Practice of Programming" by Kernighan and Pike)
- You did not follow any coding standard for writing function signatures (read "Practice of Programming" by Kernighan and Pike)
In an interview, who do you think will perform better, a programmer who knows the language and has more than half of the language inside his head or the one who depends on ICC ? I have nothing against ICC, its just that programmers mostly use it as a medium to avoid learning about the language and its standard libraries e.g
Can you answer all those without searching on net or looking at the book ? If yes, then congratulations, you are a real programmer but if if you can't then you gotta throw ICC away and start looking at the reference manauls (for above questions, either check out man pages or C Reference Manual by Harbison & Steele)
- do you know what fget() does that gets() does not
- why one will prefer fgets() over gets()
- why fgets() was created when gets() was already there
- what dose fgets() return on success/failure
- what type of arguments fgets() take