User forums > General (but related to Code::Blocks)

How good is CodeBlocks?

(1/2) > >>

v0xeh:
Hey guys, I am currently in college getting my AA and i decided that i want to major in computer science. I know it's a little late for me to decide that i want to persure software development this late in the game but I have always been really interested in coding since i was 14 and learned how to work with HTML,CSS and PHP. I have bought a couple of books for C++ and some other programming languages and am planning to start becoming a dedicated learner.

My question is, (keep in mind i really am new to all of this stuff) Is using CodeBlocks to learn C++ going to effect the way that i learn it? Is it going to be any different than any other Software I might use further down the line or maybe even in a career?

I have this big C++ for dummies book thats 7 books in one, and throughout the whole book it will be using CodeBlocks (it gave a disk) and i just want to make sure that the only reason it is suggesting it is because they favor it over others and not because it is going to stunt my learning process or be only applied to very specific ideas.

Sorry for the long posts, and sorry if i sounded ignorant or wrong at all. I am just excited and nervous to start my journey towards programming!

P.S Sorry if this is the wrong section for this!

BlueHazzard:
C::B is mainly like every other c/c++ ide out there... It has not may vantages or disadvantages over the other. If you can work with one ide you can work also with a other WHEN you learn the build process behind the system. My personal opinion is that you should learn the basics of the build process before you start with a ide. But you can learn this also with the ide, by inspecting the full build log. So, do what ever is comfortable for you, but learn what is behind the whole thing and not be like "if i press this button my ide will make a program but i don't have no idea how this works"

greetings

v0xeh:

--- Quote from: BlueHazzard on January 31, 2014, 10:42:27 am ---C::B is mainly like every other c/c++ ide out there... It has not may vantages or disadvantages over the other. If you can work with one ide you can work also with a other WHEN you learn the build process behind the system. My personal opinion is that you should learn the basics of the build process before you start with a ide. But you can learn this also with the ide, by inspecting the full build log. So, do what ever is comfortable for you, but learn what is behind the whole thing and not be like "if i press this button my ide will make a program but i don't have no idea how this works"

greetings

--- End quote ---

Can you explain what you mean by the build process? are you talking about what goes on when it is compiled?

Thanks for your response by the way! Appreciate it.

BlueHazzard:
exactly

GrizGrover:
The C++ code that you enter when compiled only contains the machine code for those statements that you wrote.  The code that does the cin, cout and other stuff is in a library of code.  A linker needs to combine your machine code with the necessary library machine code.  It then needs to produce a load module from this machine code so Windows, OS-X or Linux can load your code into RAM for execution.  This process of compiling and linking your code is called building.

With over thirty years of teaching various flavors of FORTRAN, assembler, C and C++, I can tell you that using an IDE right off the bat is the best thing that you can do.  Doing compiles and linking at the command line brings nothing to the table to satisfy your want to learn to program a computer.  The IDE hides you from this detail and in the case of Code::Block allows you to debug those logical errors in your code.  Once you have gained confidence in you programming abilities, by all means investigate compiler options, linkers, librarians, version control, profilers and the like.  But don't get bogged down in code production issues before you need to.  :)

Navigation

[0] Message Index

[#] Next page

Go to full version