EvilZone
Programming and Scripting => C - C++ => : Reynald March 07, 2015, 11:35:43 AM
-
What application is recommended if i want to learn C++ language?
-
Depends, would you like to focus on a certain type of development (GUI vs Console)
Are you on windows? Linux? Some weird ass OS we've never heard of?
Me personally I'd suggest Notepad++ and g++ but I'm a bit of a glutton for punishment.
-
i used windows, and i have downloaded notepad++
what is the difference between G++ and gcc?
i have the gcc installed already from the beginning
sry for bad eng
-
i used windows, and i have downloaded notepad++
what is the difference between G++ and gcc?
i have the gcc installed already from the beginning
sry for bad eng
G++ - is GNU C++ compiler.
GCC - is GNU C compiler.
Also you can try other text editors like:
Sublime Text
Vim
Emacs
or IDEs:
CLion
Visual Studio
Dev++
and many others
-
What OS you use?
This is my opinion- use a text writer (I use VIM) and a compiler (let's say, GCC), Of course I'm using linux but if you use windows you can use Notepad++ or something.
In addition to that you got IDE's like code:blocks and such.
good luck :)
-
I use windows 8 as my primary OS but I run Ubuntu sometimes to test certain programs on VM.
For C++ I like to use visual studio 2010, I really like it due to the reason that is easy to use and that it supports more than one language and for my text editor I like to use notepad++.
Link for visual studio 2010: http://getintopc.com/softwares/development/download-visual-studio-2010-professional-free-version/ (http://getintopc.com/softwares/development/download-visual-studio-2010-professional-free-version/)
Link for notepad++: http://notepad-plus-plus.org/ (http://notepad-plus-plus.org/)
-
G++ - is GNU C++ compiler.
GCC - is GNU C compiler.
Also you can try other text editors like:
Sublime Text
Vim
Emacs
or IDEs:
CLion
Visual Studio
Dev++
and many others
Some of what you listed are not just text-editors but full blown IDE's so that list is a bit misleading.
I use windows 8 as my primary OS but I run Ubuntu sometimes to test certain programs on VM.
For C++ I like to use visual studio 2010, I really like it due to the reason that is easy to use and that it supports more than one language and for my text editor I like to use notepad++.
Link for visual studio 2010: http://getintopc.com/softwares/development/download-visual-studio-2010-professional-free-version/ (http://getintopc.com/softwares/development/download-visual-studio-2010-professional-free-version/)
Link for notepad++: http://notepad-plus-plus.org/ (http://notepad-plus-plus.org/)
Why 2010? You're not going to get a lot of the useful C++11/14 feature sets using version 2010.
-
IDK but i'm just used to visual studio 2010
-
Visual Studio on Windows.
Nano on Linux.
And if you use some derpy OS no one has ever heard of, use the default text editor I guess.
-
Visual Studio on Windows.
Nano on Linux.
And if you use some derpy OS no one has ever heard of, use the default text editor I guess.
Or use vim, which should be there for any OS you would want to use.
-
Visual Studio on Windows.
Nano on Linux.
And if you use some derpy OS no one has ever heard of, use the default text editor I guess.
Visual studio is an IDE and nano is a text editor, and they are very different.
if you decided to use an CLI text editor I would prefer vim because of it's costumization options and plugins but if you want an IDE in linux you should go for CODE:BLOCKS or something...
-
Visual studio is an IDE and nano is a text editor, and they are very different.
if you decided to use an CLI text editor I would prefer vim because of it's costumization options and plugins but if you want an IDE in linux you should go for CODE:BLOCKS or something...
I realize that, but they are both very nice for coding purposes.
And yeah, I'm not very familier with any IDE's in Linux, so I just said Nano.
-
That's ok :)
-
Code::Blocks <3
-
Ok, so I started with the C88 standard; so I would suggest to grab your nuts, get off windows, install linux, use what ever text editor you find you enjoy. I like gedit, cause it's simple, and has a very wide variety of code highlighting, and learn to compile with GNU compiler (gcc,g++), it's simple to switch from C/C++, to fortran, or what ever language you wanna go with...
If you are going to code C or C++ on a microshit system, or IDE; you have just cut your program's speed by about 60%, and increased the probability of vulnerable code by about 180%.
-
To save yourself from ripping you hair out. I suggest you use Linux and compile with g++. Learing the text editor emacs or vim wouldn't hurt either. Good luck man.
-
Nano on Linux.
Dude how do you get shit done with nano on Linux? Lol.
I mean I use vim with tons of plugins to get clang complete (autocompletion), and other IDE like features (auto compile and dynamic error detection) working.
Can't imagine doing the same with nano, does it have plugins for c++?
-
I like both CodeBlocks and QT
-
Code::Blocks is a great free IDE. I love it and it is what I used to learn C++. Also, G++ should be a fine compiler.
-
I use Code Blocks in windows but Sometimes it is always nice and easy to use VIM and gcc in linux
-
Dude how do you get shit done with nano on Linux? Lol.
I mean I use vim with tons of plugins to get clang complete (autocompletion), and other IDE like features (auto compile and dynamic error detection) working.
Can't imagine doing the same with nano, does it have plugins for c++?
Not everyone really needs/wants autocompletion.
-
Dude how do you get shit done with nano on Linux? Lol.
I mean I use vim with tons of plugins to get clang complete (autocompletion), and other IDE like features (auto compile and dynamic error detection) working.
Can't imagine doing the same with nano, does it have plugins for c++?
You have a long way to go, kid. I use vim, without any plugins to code in the language I want. If you can't code without autocomplete, you seriously need to work hard on your skills.
I can understand coding Java with autocomplete as you seriously need to type all the class.function name but not in C, C++ -_-
-
You have a long way to go, kid. I use vim, without any plugins to code in the language I want. If you can't code without autocomplete, you seriously need to work hard on your skills.
I can understand coding Java with autocomplete as you seriously need to type all the class.function name but not in C, C++ -_-
That really depends, personally autocomplete is not the only reason I use vim. Also it's not easy remembering everything at the top of your head, especially when you're working with different languages and multiple projects.
For example python has a huge standard library, IDE like features come in handy for example in cases where you want to look up the built in functions that are available, the parameters or the documentation with a few key presses without having to look it up manually.
Also like I said before, I use plugins like YouCompleteMe for C++, which allows you to see the errors dynamically as you're coding without having to manually compile and debug it every time. Same can be said about a similar plugin called UltiSnips which allows you to define your custom macro or you can go with the default ones to automatically define classes, header files, formatting / documenting your code, setting up license agreements, defining basic control stuctures (loops & conditions) without even having to type anything. In other words, it saves time.
Of course for a beginner it won't make sense for all of these features since they're struggling to understand the basics but once you get past that and aim to be more productive as a programmer you need these features. I really don't think you have much programming experience otherwise you would know the benefits of these stuff by now.
Vim by default without any plugins or customization is just a faster version of a normal text editor like notepad. Most pro vim users use tons of plugins and customize vim to be more productive. If you haven't ever customized vim or never tried any of the plugins, then all I can say is that you're just starting to scratch the surface when it comes to Vim.
Of course I can work with nano without any fancy features but then there will be no difference between you and me in terms of productivity.
Also a reminder, next time don't refer to someone you just met on a forum as "a kid" and try not to make judgements on their ability just because they're new. You don't know me nor do you have any idea on my skill sets, my background or who I am in person.
I would actually be interested in pursuing this discussion in a positive light to see where it leads.
-
You have a long way to go, kid. I use vim, without any plugins to code in the language I want. If you can't code without autocomplete, you seriously need to work hard on your skills.
I can understand coding Java with autocomplete as you seriously need to type all the class.function name but not in C, C++ -_-
You'd rather waste your time writing everything out rather than actually working with the logic of the code itself? Development with C/C++ is already slow as it is, *tools* like auto-complete improve workflow, and I use Vim myself. It has nothing to do with not being able to code without it, there's just no point in not using something that can help you write your code faster.
(http://i.imgur.com/U6VZuBP.png)
You do realize that the whole point in even using vim is to make text manipulation and editing faster and more efficient? It's the whole reason why movements exist in a way that allows you to not move your hands *far*. If you aren't using plugins, you're really not taking advantage of the full feature-set of the editor itself IMO.
If it was up to the programmer to do everything, notepad would be the only program people use, but that's not the case -- you have much to learn.
I can understand coding Java with autocomplete as you seriously need to type all the class.function name but not in C, C++ -_-
What? Namespaces and static member functions, etc... Don't exist in C++? Have you ever used the boost library? You'd see how verbose some code can be if you ever have...
-
If you are using Windows you may want to use Visual Studio IDE, the community edition is free, if you can't find it you can pm me for help. Notepad++ is popular too because it is just a well designed code editor as opposed to a full bloated IDE. If you are using linux I have little experience and have only used vi.
-
If any of you don't already know Microsoft have released the text editor in Visual Studio as a standalone program called Visual Code. The text editor we love but no IDE:
https://www.visualstudio.com/en-us/products/code-vs.aspx
-
@rogue.hackz & ArkPhase - I've been programming for 20 years, I started on the C88, with vi, on a console based bare bones 0.3 Red Hat. I was taught embedded systems design by a 30+ year senior embedded programmer for NASA. I see absolutely no point in using any of the flashy bullshit most n00bs use these days. The truth is, N00Bs have to use those plugins, and all those "extras", cause they are too busy being too new, to keep track of simple bullshit... If you are incapable of keeping track of your program's execution without needing "documentation", you're a n00b, if you can not deduce your mistakes without needing some "auto error finder", you're a n00b. More importantly, if you can not code in a manner, that is self-secured, and hard to exploit; you are a n00b. Period. So, in other words, you are kids... I am a kid.
-
I'd recommend CodeBlocks aswell if you're just starting out. Looks neat and it's easy to use.
-
@rogue.hackz & ArkPhase - I've been programming for 20 years, I started on the C88, with vi, on a console based bare bones 0.3 Red Hat. I was taught embedded systems design by a 30+ year senior embedded programmer for NASA. I see absolutely no point in using any of the flashy bullshit most n00bs use these days. The truth is, N00Bs have to use those plugins, and all those "extras", cause they are too busy being too new, to keep track of simple bullshit... If you are incapable of keeping track of your program's execution without needing "documentation", you're a n00b, if you can not deduce your mistakes without needing some "auto error finder", you're a n00b. More importantly, if you can not code in a manner, that is self-secured, and hard to exploit; you are a n00b. Period. So, in other words, you are kids... I am a kid.
Let's get the credentials out of the way, since they appear important.
I've been coding for roughly 27 years. I'm a 'qualified expert'(meaning my aptitude has been tested and verified) in multiple languages and have taught/tutored several, especially C & C++. I've done quite of a bit of embedded development on multiple platforms and have implemented code for systems run by NASA JPL as well as the United States Navy. I have created custom hardware and written drivers for numerous devices. I have assisted in the development of operating systems, kernels, bootloaders, system libraries, service daemons, and more. I have been asked to edit more than one doctoral thesis and assisted with writing the firmware for an MIT robotics project. I have even told genuinely humorous assembly jokes after half a bottle of jager in the middle of the woods with no computer nearby for miles.
Now for the shock & awe: I use so-called 'n00b' features.
I don't personally need it, but I do tend to make use of it when available and properly implemented. Being well-versed or even highly proficient in a language and using features such as auto-completion, object browsers, class maps, flow monitors, etc. are not mutually exclusive. I'll admit that I sometimes find myself fighting with auto-completion specifically when I find it to be less than adequately implemented but that does not mean that I do not find use for such features. Typically, the speed at which usable, functional, efficient, and secure code can be written is improved when using such features. This is true for 'n00bs' as well as for more experienced developers.
I also document my code. I do this for multiple reasons, not the least of which is so that others can more easily understand my methods and reasoning. I also use documentation to indicate the expected state of values at certain points in the code, to remind myself of interfaces, to denote future plans and intentions, and even to supplement the features provided by things like auto-completion.
I also attest to the capabilities of ArkPhaze. ArkPhaze is one of the few people here from whom I accept critical criticism. I respect ArkPhaze as a developer and hacker. You should too.
More importantly; you should consider not just the words you speak(type) but also the wisdom(or lack thereof) behind the message that they provide. One would expect someone of your supposed experience and proficiency to be more aware.
-
#rekt
-
Question for you CodeBlocks guys... How can I figure out if I have gcc compiler installed? I don't remember if I did or not and I always forget when I come back to it after months of doing other stuff.
-
There is an installer for codeblocks with gcc bundled that does all the shit for you. If you fail you might need to reevaluate your life decisions
-
Man lenoch >:(
-
I'm just helping. I mean you have been busy with this specific task for 3 month's if not more.
-
Specifically not this task for 3 months*
I've been playing guitar man I told you that.
-
@rogue.hackz & ArkPhase - I've been programming for 20 years, I started on the C88, with vi, on a console based bare bones 0.3 Red Hat. I was taught embedded systems design by a 30+ year senior embedded programmer for NASA. I see absolutely no point in using any of the flashy bullshit most n00bs use these days. The truth is, N00Bs have to use those plugins, and all those "extras", cause they are too busy being too new, to keep track of simple bullshit... If you are incapable of keeping track of your program's execution without needing "documentation", you're a n00b, if you can not deduce your mistakes without needing some "auto error finder", you're a n00b. More importantly, if you can not code in a manner, that is self-secured, and hard to exploit; you are a n00b. Period. So, in other words, you are kids... I am a kid.
I have no idea who 'ArkPhase' is but the way you type makes me think you're 13 in all honesty. Btw, unless everything is always standardized, optimized code is usually fairly cryptic under most circumstances so if you want to waste time having to re-analyze your code every time you need to go back to it? Whatever the reason is that you need to review old code, good luck remembering what that code was meant to do as well. I've had scenarios where it's been about a year since I had last seen parts of my code in some projects, and it all seemed like a blur in terms of me even writing the code. The other benefit of documentation for code is noticeable when you work in a team environment -- other people have to be able to read and understand your code as well; save them the time and effort of wasting any more time than necessary having to read through your actual code to interpret it.
Nobody said noobs have to use anything, noobs generally won't start out with git or use memory profilers on day 1 anyways so your logic is flawed. What most people here are talking about is productivity and accessories that help with debugging code -- if it didn't matter, tools like valgrind, cachegrind, and many others would not exist because those developers wouldn't have had the motivation to even dream about creating a program like it. You can keep your delusional opinions to yourself from now on as you clearly have zero experience in the real world, or hardly any of it. You cannot fool us...
And I know Xires is a member here that I can respect without even bothering to know about any of his credentials, along with a few others. Why? Because they don't feel the need to boast about their credentials; any good programmer doesn't have to tell other programmers about what they have done or what they can do -- it shows in the remarks they make and the code they write. I have yet to see the same from you, and until that point in time I will respectfully dismiss those credentials and cherry pick the relevant parts of your post describing your ideas which are really just your own opinions, of which they shall remain.
-
Whatever the reason is that you need to review old code, good luck remembering what that code was meant to do as well.
As old Chinese phrase says: "A year ago, only me and god understood how this code works. Now it's only god."