2013年11月2日土曜日

開発環境

C実践プログラミング 第3版 (Steve Oualline (著)、 望月 康司 (監訳) (翻訳)、谷口 功 (翻訳)、オライリー・ジャパン)のⅡ部(単純なプログラミング)の10章(Cプリプロセッサ)、10.1(#define文)、設問 10-3を解いてみる。

その他参考書籍

設問 10-3.

#define 文でセミコロンを使っているから。

sizeの値が8になるように修正。

コード

sample.c

#include <stdio.h>

#define SIZE 10
#define FUDGE SIZE -2

int main()
{
    int size;
    
    size = FUDGE;
    printf("Size is %d\n", size);
    return (0);
}

makefile

CC=cc
CFLAGS=-g

sample: sample.c
 $(CC) $(CFLAGS) -o sample sample.c

clean:
 rm -f sample

入出力結果(Terminal)

$ ./sample
Size is 8
$

0 コメント:

コメントを投稿