2
1

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初心者限定#2

Last updated at Posted at 2014-12-26

###投稿の動機
専門学校でPG教えてます。時間の制約の為、c++もさらっとしか教えられないので、学生さん向けにまとめようと思います。
ついでにcがわからんと思い込んでる方々の参考になれば幸いです。
プロには不要なまとめです。

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

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

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

###Sum.c

Sum.c
#include <stdio.h>

int main(void)
{
    int x, y, z;
    printf("Input 3Numbers with space. ex)100 200 300\n");
    scanf("%d %d %d", &x, &y, &z);
    printf("First%d、Second%d、Last%d\n", x, y, z);
    printf("Sum = %d\n", x + y + z);
    return 0;
}

###コンパイル

gcc -o Sum Sum.c

###Run

./Sum

kobito.1419552180.491196.png

はい簡単です。

###おまけ
Macならsayコマンドを使って
kobito.1419552261.899268.png

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

2
1
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
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?