3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

初めてのC初心者限定#3

Posted at

###投稿の動機
専門学校でPG教えてます。時間の制約の為、c++もさらっとしか教えられないので、学生さん向けにまとめようと思います。
ついでにcがわからんと思い込んでる方々の参考になれば幸いです。
プロには不要なまとめです。あくまで、初心者むけです。
ご指摘は大歓迎です。積極的に取り入れていきます。

###環境
####Linux,Unix,Mac
ターミナルからコマンドを発行。
gcc -v
インストール済みなら、何らかリターンがあります。

####Windows
VmWare Playerをインストール
Linuxの仮想環境を作りましょう。

bcc32 .netのコンパイラを勧めない理由。
結局Unix、Linuxを勉強しなきゃならんのです。

###条件判断if

If.c
#include <stdio.h>

int main(void)
{
    int ans;
    printf("Input Number!");
    scanf("%d", &ans);
    if(ans < 0){
        printf("It's minus.\n");
    }
    else if(ans > 0){
        printf("It's plus.\n");
    }
    else {
        printf("It's zero.\n");
    }

    return 0;
}

整数を入力します。
正、負、0しかないので、そのように記述します。

###コンパイル

gcc -o If If.c

###Run

./If

kobito.1419562980.189125.png

はい簡単です。

###おまけ
Macならsayコマンドを使って
./If | say

してみると、ちょっと楽しい。

3
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?