More actions
imported>qa22ahj No edit summary |
imported>qa22ahj No edit summary |
||
| Line 26: | Line 26: | ||
== 컴파일하기 == | == 컴파일하기 == | ||
=== GCC === | === GCC === | ||
gcc -o | gcc -o [target] [source file] | ||
imported>qa22ahj No edit summary |
imported>qa22ahj No edit summary |
||
| Line 26: | Line 26: | ||
== 컴파일하기 == | == 컴파일하기 == | ||
=== GCC === | === GCC === | ||
gcc -o | gcc -o [target] [source file] | ||
데니스 리치가 만든 20세기의 걸작 언어
#include <stdio.h>
int main () {
printf("hello world!");
return 0;
}
gcc -o [target] [source file]