Windows,VS2013とLinux, ccの対照

Time-stamp: "2015-04-19 Sun 10:13 JST hig"

比較

VC++2013 on Windows81年生でならったのりのcc on Linux
ソースファイル hello.c hello.c
オブジェクトファイル hello.obj hello.o
実行ファイル hello.exe 任意(a.out, helloなど)
パス名Q:¥nc¥kadai1¥hello.c~/nc/kadai1/hello.c
ファイル一覧の表示dirls
カレントディレクトリの変更cdcd
(テキスト)ファイルの内容の表示typecat
ファイルの消去del hello.crm hello.c
編集start notepad hello.c またはVisual Studio 2013 または好きなテキストエディタ emacs hello.c または好きなテキストエディタ
コンパイル cl hello.c cc -o hello hello.c
実行hello./hello, ./a.out
make make nmake

フォルダ, ディレクトリを作る

C:\フォルダ名またはQ:\フォルダ名ディレクトリを作る方法には次のようなものがあります.

エクスプローラで

(マイ)コンピュータからたどって C:¥またはQ:¥を表示して, そこで右クリックして新しいフォルダを作成して フォルダ名に名前を変更する

コマンドプロンプトで

スタートメニュー>検索の開始cmdを検索して見つかる コマンドプロンプトcmd.exeを起動して,
C:¥Program Files¥Microsoft Visual Studio 9.0¥VC¥>C: またはQ:
C:¥Program Files¥Microsoft Visual Studio 9.0¥VC¥>mkdir ¥フォルダ名
などのようにする
Copyright © 2002-2015 Saburo Higuchi. All rights reserved.
樋口三郎, http://www.math.ryukoku.ac.jp/~hig/