Quick Steps on How to Use CEE Studio


Create a New C Project

1. Click new_project to open a new project form.
There will be a form/box that appears in the middle of the page like this:

_images/new-project-form.png
  1. Fill in the field named “Project Name” with any name you want.
  2. Select “a C main template” for the C template.
  3. Click “Save”.

Running Code With Segfault Protection

  1. Create a new project, or click on a project in the bottom right panel, similar to the one shown below:

    _images/projects_menu.png
  2. Click run_button to build and start the execution.

  3. The bottom part of the screen should look like the one shown below. You can use it to run your programs.

    _images/terminal_panel.png

Debugging Code

  1. Create a new project, or click on a project in the bottom right panel, similar to the one shown below:

    _images/projects_menu.png
  2. Click on the debug_button button to build and start a debugging section.

  3. An menu will appear to the right of the screen that should look like the one shown below. You can use it to debug your programs.

    _images/debug_panel.png

Recording Code Execution

  1. Create a new project, or click on a project in the bottom right panel, similar to the one shown below:

    _images/projects_menu.png
  2. Select your configuration to to be “build+run” like so: build_run_select

    Note: If your code takes command line arguments or reads from stdin, please also click on the configuration_button button right next to the “build+run”.

    This will open up a form that will allow you to update the program arguments (2) and stdin fields (3) configuration on the bottom.
    Do no forget to hit the save (4) button as well as the save_button button afterwards. You can also change the executable (1) as shown below:

    _images/configuration_continue_usage.png
  3. Click the record_button button to build, run, and execute your program.

  4. You should see the record_tab tab, as shown below:

    _images/record_panel.png