Posts

Showing posts from May, 2017

How To Create and Run Project In Code::Blocks

Image
        In the previous post, we have seen how to download and install Code::Blocks for C programming. If you did not read that article then read How to Download and Install Code::Blocks before proceeding further.        The code block is a popular application for C Programming. It is open source, cross platform, free C, C++ and Fortran IDE. Using Code::Blocks we can write C code, compile and run it. It popular application and free to use.         In this post, I am going to explain how to run and compile C program code in Code::Blocks. Lets us follow the procedure. The procedure is same for every project.          In the first step you have to double-click on the Code::Blocks icon which on the desktop. After that, you will see window like this and you have to click on Create New Project.           After sele...

How to Download and Install Code::Blocks

Image
Ocean of Programming         The code block is a popular application for C Programming. It is open source, cross-platform, free C, C++ and Fortran IDE. Using Code::Blocks we can write C code, compile and run it. It popular application and free to use. In this article, I am going to explain how to download and install it. Most people download and install the incorrect file and they face difficulties in compiling and running the C program. It is very simple to download install and configure the Code::Blocks. The current version of Code::Blocks is 16.01 which is released on Thursday, 28 January 2016 10:21which has many improvements, new plugins and features, more stable and major code completion enhancement. The Code::Blocks is available for Windows XP / Vista / 7 / 8.x / 10 Linux 32-bit Linux 64-bit Mac OS X          We need to download according to our operating system. I am downloading and installing Code::Blocks...

What is a Program?

Image
              Consider if you want to do some calculations then what we need? we need a calculator. Then what is calculator? The calculator is a simple program. That needs some language to create it. We can create a calculator in any language like C, Java, .net etc. We need only think which language is suitable for us and which type of interface is needed. If you want simple interface by showing options like addition, subtraction etc you can use C or C++ and if you want an interface like real calculator you can go through the Visual Basic, C# or .net which one is suitable for us.             Nowadays programming becomes very essential part. Think world without programming what will you see? You will see nothing. Without programming, you can not create anything new related to the computer. The program is a set or sequence of instructions which is written in a specific language.       ...