1 / 14

プログラミング入門

プログラミング入門. 第 1 回 ソースコードをコンパイルする. 1.ソースファイルを作成する 2.コンパイルする ソースファイルとは ・ ルールに従って呪文を書く ・ ファイルの拡張子は c. アプリケーションができるまで. ソースファイル (C言語). コンパイラ < 変換 >. アプリケーション. アプリケーションを作成してみよう. 目標: ABCDE と表示するアプリケーションを作成する     . アプリケーションを実行する ( sample.exe ). ABCDE と表示される. 1.ソースファイルを作成する 2.コンパイルする

Download Presentation

プログラミング入門

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. プログラミング入門 第1回 ソースコードをコンパイルする

  2. 1.ソースファイルを作成する 2.コンパイルする ソースファイルとは ・ ルールに従って呪文を書く ・ ファイルの拡張子は c アプリケーションができるまで ソースファイル (C言語) コンパイラ <変換> アプリケーション

  3. アプリケーションを作成してみよう 目標:ABCDEと表示するアプリケーションを作成する      アプリケーションを実行する(sample.exe) ABCDEと表示される

  4. 1.ソースファイルを作成する 2.コンパイルする ソースファイルとは ・ ルールに従って呪文を書く ・ ファイルの拡張子は c アプリケーションができるまで ソースファイル (C言語) コンパイラ <変換> アプリケーション

  5. コマンドで操作 Visual Studio2010コマンドプロンプトを起動 (アクセサリのコマンドプロンプトではない!) • Zドライブへ移動 • progというフォルダへ移動 • 01というフォルダへ移動

  6. コマンドで操作 Visual Studio2010コマンドプロンプトを起動 (アクセサリのコマンドプロンプトではない!) • Zドライブへ移動 z: • progというフォルダへ移動 cd prog • 01というフォルダへ移動 cd 01 cd prog\01

  7. コマンドで操作 Visual Studio2010コマンドプロンプトを起動 (アクセサリのコマンドプロンプトではない!) • Zドライブへ移動 z: • progというフォルダへ移動 cd prog • 01というフォルダへ移動 cd 01 • ファイル編集 notepad sample.c

  8. #include<stdio.h> intmain(){ printf("ABCDE"); return0; } すべて半角文字で入力 → 保存

  9. 1.ソースファイルを作成する 2.コンパイルする >clsample.c アプリケーションができるまで ソースファイル (C言語) コンパイラ <変換> アプリケーション

  10. 1.ソースファイルを作成する 2.コンパイルする Z:\C>cl0416-1.c アプリケーションができるまで ソースファイル (C言語) コンパイラ <変換> アプリケーション

  11. 1.ソースファイルを作成する 2.コンパイルする >clsample.c >sample.exe アプリケーションができるまで ソースファイル (C言語) コンパイラ <変換> アプリケーション

  12. #include<stdio.h> intmain(){ printf("ABCDE"); return0; }

  13. 確認事項 • プログラムの作成手順 • sample.c →sample.exe • コマンド • sample.c • notepad sample.c • sample.exe • sample

More Related