Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 407 Bytes

NOTEBOOK.md

File metadata and controls

34 lines (23 loc) · 407 Bytes

Standard CIR-KIT TextBook

moving to workspace

'cd Workspace' 'cd practice' 'cd c++' 'pwd'

-> ~/Workspace/practice/c++

C compiling

edit files

'gedit main.c' The name "main" can be other one.

call compiler

'gcc main.c -o NAME'

execute

'./NAME'

C++ compiling

'g++ main.cpp -o NAME'

execute

'./NAME'

python compiling

NO NEED TO COMPILE!

execute

'python hogehgoe.py'