0

構造体を使用する C ソース ファイルをコンパイルしようとすると、エラーが発生します。Ubuntu 12.04 LTS で gcc (Ubuntu/Linaro 4.6.3-1ubuntu5) 4.6.3 を使用しています。

コードは次のとおりです。

/* struct.c: Illustrates structures */
#include <stdio.h>
#include <string.h>

struct Hitter {
    char last[16];
    char first[11];
    int home_runs;
};

int main() {
    struct Hitter h1 = {"McGwire", "Mark", 70};
    struct Hitter h2;
    strcpy(h2.last, "Sosa");
    strcpy(h2.first, "Sammy");
    h2.home_runs = h1.home_runs - 4;
    printf("#1 == {%s, %s, %d}\n",
           h1.last, h1.first, h1.home_runs);
    printf("#2 == {%s, %s, %d}\n",
           h2.last, h2.first, h2.home_runs);
    return 0;
}

ここにエラーがあります:

$ gcc -o struct struct.c
struct.c: In function `main':
struct.c:12:9: error: parameter `h1' is initialized
struct.c:14:2: error: expected declaration specifiers before `strcpy'
struct.c:15:2: error: expected declaration specifiers before `strcpy'
struct.c:16:2: error: expected declaration specifiers before `h2'
struct.c:18:2: error: expected declaration specifiers before `printf'
struct.c:21:2: error: expected declaration specifiers before `printf'
struct.c:23:2: error: expected declaration specifiers before `return'
struct.c:24:1: error: expected declaration specifiers before `}' token
struct.c:13:16: error: declaration for parameter `h2' but no such parameter
struct.c:12:16: error: declaration for parameter `h1' but no such parameter
struct.c:24:1: error: expected `{' at end of input

上記のコードは、Chuck Allison による CD トレーニング コース「Thinking in C」からのものです。私はそれが非常に古い CD であることを知っており、構造の構文が変更されたに違いないと確信していますが、現在はどうなっているのかわかりません。あなたの助けに感謝します。ありがとう

4

1 に答える 1

1

同様のケースがあり、コンパイルしようとしていたファイルの行末が正しくないことが判明したことがあります。たとえば、ディスクから取得したファイルには行末として CR + LF が含まれている可能性がありますが、LF のみが想定されています。これは、ほとんどのテキスト エディターで非表示の文字を表示するオプションを有効にすることで発見できます。

于 2012-09-28T15:45:38.897 に答える