gccとlibc6-devをインストールする

~$ su;パスワードを入力し管理者権限になる
# aptitude install gcc libc6-dev

helloworldの表示

---------helloworld.c------------------

#include <stdio.h> int main() { printf("hello, world\n"); return 0; }

---------------------------------------

helloworld.cのダウンロード

(cdコマンドでhelloworld.cの置いてあるディレクトリに移動しておく)
~$ gcc helloworld.c -o helloworld

~$ ./helloworld