Belajar C: Compile Hello World
Revision as of 09:00, 23 January 2021 by Onnowpurbo (talk | contribs) (Created page with "==Buat Source Code== vi helloworld.c #include <stdio.h> int main() { // printf() displays the string inside quotation printf("Hello, World!"); return 0; }...")
Buat Source Code
vi helloworld.c
#include <stdio.h> int main() { // printf() displays the string inside quotation printf("Hello, World!"); return 0; }
Compile
gcc helloworld.c -o a.out
Run
sudo chmod +x a.out ./a.out
Referensi