How to create and run C program using CodeBlocks

Compiling and executing C programs using command prompt has always been a nightmare to programmers. It is time taking process.

Once you got strong hold to compile and execute C programs using command line, it’s time to switch to IDE. However, I always recommend a beginner to use command prompt for sometime for compiling and executing C programs.

CodeBlocks is a powerful IDE for creating, compiling, executing and debugging C/C++ programs. In previous post, I explained installation and configuration of CodeBlocks. In this post we will move further and see how to create, compile and run a C program in CodeBlocks.

How to create C program in CodeBlocks IDE

  1. Open CodeBlocks IDE and create a new file. Click on File → New → File.
    Create new file in CodeBlocks

  2. From the New form template window select C/C++ source and click Go button.

    Create new C file in CodeBlocks - 2

  3. If you see a welcome message, click next to skip the welcome message. Make sure you have checked Skip this next time checkbox if you do not want to see this welcome message again.

    Create new C file in CodeBlocks - 2

    Next, select your language from C/C++ source window and click Next button.

    Create new C file in CodeBlocks - 4

  4. Give name to your file and specify the location.

    It is always recommended to save all your C programs in a C workspace (directory). Creating a C workspace is onetime process. For now, create a new C workspace (folder) with name “Codeforwin C tutorials” anywhere in your computer.

    Once you created a C workspace, click the ellipsis button present under File name with full path. Browse your C workspace, mention the file name click Finish.

    Create new C file in CodeBlocks - 5

  5. Write and save your first C program. Press Ctrl + S to save.
    For now you can simply copy paste the hello world C program.

    #include <stdio.h>
    
    int main()
    {
        printf("Hello, Codeforwin!");
    
        return 0;
    }

    Create new C file in CodeBlocks - 6

How to compile and run C program in CodeBlocks

Once you created your first C program it’s time to compile and run the program.

  1. To compile and run a C program, click Build → Build and run to compile and build your C program, alternatively use the shortcut key F9.
    In case, your program contains any errors. Error messages are shown in the Build messages tab below the code editor.

    Create new C file in CodeBlocks - 7