サイトマップ / C言語講座出入り口総目次目次:ヒープ領域分割コンパイル(ソース1)||ソース2

青い直線

分割コンパイル(ソース2)

青い直線
#include  <stdio.h>

const char *unit[ ] = { "atto ", "centi", "deca ", "deci ", "exa  ", "kilo ",
                        "femto", "giga ", "hecto", "mega ",
                        "micro", "milli", "nano ", "peta ", 
                        "pico ", "tera ", NULL
};

void ShowUnit(const char **p);

void ShowUnit(const char **p)
{
    while (*p != NULL) {
        printf("%s ", *p);
        p++;
    }
    printf("\n");
}
青い直線

/* (C) 2000- YFプロ. All Rights Reserved. */    提供:C言語講座−それ自体コンパイルできる教材を使った講座です−

青い直線

サイトマップ / C言語講座出入り口総目次目次:ヒープ領域分割コンパイル(ソース1)||ソース2