How to install Code Blocks?

you may be thinking why  have i written a post for installing code blocks as it is very easy to install programs on windows  now a days may be a child studying in grade 3 would be able to do it, but there are somethings we always overlook which leads to a severe problem that we are not able to compile c code snippets on code blocks.
So here is the right process.

1) first go to the download website of code blocks i.e
http://www.codeblocks.org/downloads/26#windows

2)you will get this type of window
now here  download the 98 mb  file named codeblocks-12.11mingw-setup.exe.


3) now after downloading the file install the file and then open code blocks  then goto settings then select compiler  there select   toolchain executables

then in the the compilers directory click the auto detect button and then click ok , and that's it ,now code blocks is ready to compile and run c code snippets.

No comments:

Post a Comment

Implemet Stack in python

  class Stack : def __init__ ( self , data ): self . stack = [] if ( data ): self . stack . append ( da...