2011年11月17日木曜日

やさしいC Lesson4 Sample7.c


Lesson4のSample7.cをUbuntu 11.10 64bitでコンパイルするとエラーになる


gcc -v
組み込み spec を使用しています。
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.6.1/lto-wrapper
ターゲット: x86_64-linux-gnu
configure 設定: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 4.6.1-9ubuntu3' --with-bugurl=file:///usr/share/doc/gcc-4.6/README.Bugs --enable-languages=c,c++,fortran,objc,obj-c++,go --prefix=/usr --program-suffix=-4.6 --enable-shared --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.6 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-plugin --enable-objc-gc --disable-werror --with-arch-32=i686 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
スレッドモデル: posix
gcc バージョン 4.6.1 (Ubuntu/Linaro 4.6.1-9ubuntu3) 



ソースコード

#include 

int main(void)
{
    int a = 1;
    int b = 0;

    printf("short int型のサイズは%dバイトです。\n", sizeof(short int));
    printf("int型のサイズは%dバイトです。\n", sizeof(int));
    printf("long型のサイズは%dバイトです。\n", sizeof(long int));
    printf("float型のサイズは%dバイトです。\n", sizeof(float));
    printf("double型のサイズは%dバイトです。\n", sizeof(double));
    printf("long double型のサイズは%dバイトです。\n", sizeof(long double));
    printf("char型のサイズは%dバイトです。\n", sizeof(char));
    printf("整数aのサイズは%dバイトです。\n", sizeof(a));
    printf("式a+bのサイズは%dバイトです。\n", sizeof(a+b));

    return 0;
}

警告: 書式 ‘%d’ は引数の型が ‘int’ であると予期されますが、第 2 引数の型は ‘long unsigned int’ です [-Wformat]
と、エラーがでる

%dの部分をすべて%luに変更する


#include 

int main(void)
{
    int a = 1;
    int b = 0;

    printf("short int型のサイズは%luバイトです。\n", sizeof(short int));
    printf("int型のサイズは%luバイトです。\n", sizeof(int));
    printf("long型のサイズは%luバイトです。\n", sizeof(long int));
    printf("float型のサイズは%luバイトです。\n", sizeof(float));
    printf("double型のサイズは%luバイトです。\n", sizeof(double));
    printf("long double型のサイズは%luバイトです。\n", sizeof(long double));
    printf("char型のサイズは%luバイトです。\n", sizeof(char));
    printf("整数aのサイズは%luバイトです。\n", sizeof(a));
    printf("式a+bのサイズは%luバイトです。\n", sizeof(a+b));

    return 0;
}


0 コメント: