Skip to content

C Code Runner Installer Version 1.1 Documentation

DeveloperSwastik edited this page Dec 22, 2022 · 4 revisions

Logo Image


Home            downloads            Documentations


Download C Code Runner Version 1.1 Download Version 1.1 Latest Patch Release

Table of Contents

How to Setup C Code Runner Version 1.1 On Your Windows Machine 🔝

Method 1 {Recommended Method}: 🔝

Step 1: Download C_Code_Runner.zip file by clicking below download link.

Download Version 1.1 Latest Patch Release

Step 2: Extract the c_code_runner.zip file for getting c_code_runner.exe file

Step 3: Reach the file location in CMD where c_code_runner.exe file is extracted.

Step 4: Run the below command in CMD.

c_code_runner.exe --run Start_process

Step 5: After process complete you can delete both the downloaded .zip and extracted .exe file form your system

Step 6: Now you have to add "C:\C Code Runner" path to user environment variable.

How to add path to Environment Variable:

  • Step 1: Press windows + r key to open Run Command Window.
  • Step 2: Type command system.cpl and press ok. This open System properties panel.
  • Step 3: Click on Advance option at the top.
  • Step 4: Click on Environment Variables... option at the top.
  • Step 5: In user variable double click on PATH.
  • Step 6: Click on New option at the top right.
  • Step 7: Paste the path in new entry box.
  • Step 8: Then press ok.
  • Step 9: Then again press ok.
  • Step 10: Then again press ok.
  • Now your path is added to environment variable.

Step 7: Verify installation, reopen CMD and run command given below.

c_code_runner --about About

If it show the output similar to given below. Then congratulations c_code_runner utility is successfully installed in your machine.

Output Image

Note 1: If you are using any code editor having its own terminal like VScode then you have to restart the software to refresh it's terminal.

If you got error the please use C Code Runner Debugger or try second method.

Method 2 : 🔝

Step 1: Download C_Code_Runner.zip file by clicking below download link.

Download Version 1.1 Latest Patch Release

Step 2: Extract the c_code_runner.zip file for getting c_code_runner.exe file

Step 3: Copy and paste the extracte c_code_runner file in the directory where you are currently working and now you can use the features of C Code Runner without any setup.

Arguments Pass to C Code Runner 🔝

Arguments Input Working
--h Take no input Show Help Message
--f Take file name of .c {input} file Compile file to .exe
--d take the directory path where input {.c} file store. If file is not store in current directory Locate file to the path provided
--o Take file name of .exe {output} file Use file name instead of default {file name of input file}
--about Take 'About' or 'about' as value Display the basic documentation of utility
--run Take 'Start_process' or 'start_process' as value Start the setup process of C Code Runner
--version Take no input Show the current version of software

All C Code Runner Commands 🔝

  • If you want to see help message. Use command given below and press enter.
c_code_runner --h
  • For compile and execute c code. Use command given below and then and press enter.
c_code_runner --f input_file_name.c
  • For compile and execute c code, If file is not present in current directory. Use command given below and then and press enter.
c_code_runner --d directory_path --f input_file_name.c
  • For compile file with specific name by default it is of the same name of input file with .exe extension and then execute it. Use command given below and press enter.
c_code_runner --f input_file_name.c --o output_file_name.exe
  • For starting the setup process. Use the command given below and press enter.
c_code_runner --run Start_process
  • If you want to get details about C Code Runner. Use command given below and press enter.
c_code_runner --about About
  • If you want to know the currently installed version of C Code Runner. Use the command given below and press enter.
c_code_runner --version

Note 2: Above commands work in case of first method of setup.

Note 3: If you are following method 2 then you have to just give relative path of c_code_runner.exe file to execute command if you copy paste the file in current working directory or else give absolute path to the c_code_runner.exe file to take use of it.

.\c_code_runner.exe --arguments

or

%path%\c_code_runner.exe --arguments
Clone this wiki locally