Girin Digdo
Blog Universitas Komputer Indonesia

$ gcc -c linux.c for Dummies

 $ gcc -c linux.c for Dummies
Kali ini gw mo kasi tau cara compile file.c di linux okok kopi kan dulu file.c nya terserah mau dimana,klo gw taro di Desktop :p masuk terminal, tros.. 1. compile dulu file.c nya gcc -c faktorial.c 2.buat file utk “eksekusinya” gcc -o faktorial faktorial.c 3.jalanin file “eksekusi” tadi ./faktorial ni gw kasi gambarnya biar jelas itu baru I/O standar.utk yg library laen coba aja ok deh semoga tulisan acak2an gw ini berguna...
ViewDibaca : 3544 Kali
Waktu PostingRabu, 07 Juli 10 - 08:41 WIBKomentar0 KomentarRatingRating : 0 Bagus, 0 Jelek
KategoriGCC, LINUX, C, DUMMIES, FOR, COMPILE

Chapter C for Dummies

Chapter C for Dummies
Hello,meet again with me,the most handsome in the maya’s world.now we’ll learn about C.in here,I make a program for newbie in order to can understand the basic syntax.check this out /* brought to y0u by : omicron9194 */ #include <stdio.h> #include <stdlib.h> int main(int argc, char *argv[]) { char a [100]; int b; int hasil; int hasil2; int bagi = 2; printf ("\t\t\t %34 Welcome to TikKetik %34 \n"); printf ("\t\t\t"); int i; for ( i = 0; i < 10; i++ ) { printf (" "); } printf ( "\n\n\n\nIn this program, you will learn input and output in C\n" ); getch(); printf ( "How to print \\ in C?\n"); printf ("Use...
ViewDibaca : 2815 Kali
Waktu PostingRabu, 07 Juli 10 - 08:21 WIBKomentar0 KomentarRatingRating : 0 Bagus, 0 Jelek
KategoriCHAPTER, C, FOR, DUMMIES, PROGRAMMING