0

次のコードがあります。

#include <stdio.h>
#include <stdlib.h>

int main()
{
    char buf[256];

    printf("\nString - Enter your string: ");
    scanf ("%s", buf);

    char *_S = buf;

     .....

}

コードの途中で定義すると、一部のバージョンchar *_S = buf;でコンパイル エラーが発生することがあるCXX

これのどのバージョンでCXXエラーが発生する可能性がありますか。gccこのエラーを回避するためにコマンドに追加するオプションはありますか?

編集:

次のオプションを試してみましたが、エラーは発生しませんでした。

$ gcc -std=c99 -o test test.c
$ gcc -std=c90 -o test test.c
$ gcc -std=c89 -o test test.c
$ gcc -v
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/lto-wrapper
Target: i686-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 4.5.2-8ubuntu4' --with-bugurl=file:///usr/share/doc/gcc-4.5/README.Bugs --enable-languages=c,c++,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.5 --enable-shared --enable-multiarch --with-multiarch-defaults=i386-linux-gnu --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib/i386-linux-gnu --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.5 --libdir=/usr/lib/i386-linux-gnu --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-plugin --enable-gold --enable-ld=default --with-plugin-ld=ld.gold --enable-objc-gc --enable-targets=all --disable-werror --with-arch-32=i686 --with-tune=generic --enable-checking=release --build=i686-linux-gnu --host=i686-linux-gnu --target=i686-linux-gnu
Thread model: posix
gcc version 4.5.2 (Ubuntu/Linaro 4.5.2-8ubuntu4) 
$
4

4 に答える 4

0

Prior to C99 local variable declarations must be declared at the top of a block. If your compiler does not support C99 you can either simply use C++ compilation, or create an unconditional statement block

int main()
{
    char buf[256];

    printf("\nString - Enter your string: ");
    scanf ("%s", buf);

    // Unconditional block to localise the variable buf
    {
        char *_S = buf;

        ...
    }

    // buf no longer in scope here
    ...
}
于 2013-01-07T15:11:31.907 に答える
0

-std=c99エラーを回避するには、 or -としてコンパイルしますstd=c11

デフォルトでは、GCC は「非標準 GNU goo」を使用します。これは通常、過去 10 年ほどの間にリリースされた GCC バージョンの C99 に似たものにデフォルト設定されます。つまり、デフォルトでは、GCC はエラーを出さないはずです。

于 2013-01-07T14:59:47.980 に答える
0

C99 は、ブロックの最初の非宣言ステートメントの後にローカル変数を宣言できるようにする標準の最初のバージョンです。

したがって、-std=c99gcc に渡すと、コードが受け入れられます。明らかに、標準の新しいバージョンでは、非宣言ステートメントの後にローカルを宣言することもできます。

于 2013-01-07T15:00:12.337 に答える
0

C90 以前としてビルドするように GCC に指示する必要があります。

$ gcc -std=c90 mycode.c
于 2013-01-07T14:56:45.620 に答える