私はgeditまたは崇高なテキスト(私が好む)を使用してCで基本的なプログラムを作成しようとしていますが、コンパイルまたは実行しようとしたとき、または作成中に何をしても、「stdio」を使用するオプションはありません。 h 'または同様のパッケージ。 #include <st
と入力し始めたときでさえ、Word補完の崇高な提案は 'struct'だけです。
私は何十ものスレッドを読みましたが、gcc
をインストールすることでこれを修正することができました。
これはgcc -v
からの出力です:
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper
OFFLOAD_TARGET_NAMES=nvptx-none
OFFLOAD_TARGET_DEFAULT=1
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.2.0-8ubuntu3' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-Arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --Host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 7.2.0 (Ubuntu 7.2.0-8ubuntu3) `
これはコードです:
#include <stdio.h>
int main(void)
{
printf("hello, world\n");
}
gcc
を使用してコンパイルすると、少なくともエラーは発生しません。しかし、./hello.c
だけを使用して実行しようとすると、これが得られます。
gccは、デフォルトでa.outという実行可能ファイルを作成します。代わりに実行してください。
または、適切な名前の実行可能ファイルを作成します。
gcc -o hello hello.c
makeに組み込まれたデフォルトの規則 を使用して、さらに簡単に:
make hello
対応するパッケージをヘッダー付きでインストールする必要があります(通常はlibc6-dev
)。
Sudo apt-get install libc6-dev
そして、必ずbuild-essential
をインストールしてください
Sudo apt-get install build-essential
次に、次のコマンドを使用してhello.c
をコンパイルします。
gcc hello.c -o hello
そしてそれを実行します:
./hello