Tiny C Compiler

  • May 2020
  • PDF

This document was uploaded by user and they confirmed that they have the permission to share it. If you are author or own the copyright of this book, please report to us by using this DMCA report form. Report DMCA


Overview

Download & View Tiny C Compiler as PDF for free.

More details

  • Words: 278
  • Pages: 3
Contoh kompilator untuk bahasa pemrograman C adalah Borland Turbo C, Microsoft Visual C++, Dev-C++, dan tinycc (tcc). Kompilator yang digunakan dalam materi ini adalah tinycc (tcc). Tcc bisa anda unduh melalui situs http://www.tinycc.org atau http://bellard.org/tcc. Salah satu keunggulan program tcc adalah ukurannya yang kecil dan sifatnya yang portabel (dapat dijalankan tanpa perlu di-install terlebih dahulu). Tcc memiliki lisensi GNU Lesses Public License. Berikut ini cara menggunakan program kompilator tcc. 1. Unduh file program tcc dari situs http://bellard.org/tcc. File yang diunduh berbentuk file terkompresi. Ekstrak file tersebut ke direktori “C:\“. 2. Ketik kode program dengan menggunakan editor teks sederhana, misalkan notepad.

Gambar 6.1 Mengedik kode program pada Notepad

3. Simpan file pada direktori C:\tcc dengan nama coba1.c. Pada kolom Save as type pilih All Files.

Gambar 6.2 Menyimpan file kode program bahasa C

4. Buka Command Prompt dengan mengklik Start Menu -> All Programs -> Accessories -> Command Prompt. Berikut ini tampilan dari Command Prompt Windows Vista.

Gambar 6.3 Tampilan Command Prompt 5. Masuk ke direktori tcc dengan mengetikkan “cd c:\tcc”, kemudian menekan tombol Enter. Penanda kursor akan berubah menjadi “C:\tcc>”. 6. Untuk menjalankan file kode program yang telah dibuat ketikkan perintah dengan format “tcc -run nama_file.c”, kemudian tekan tombol Enter. Misalkan untuk file coba1.c, ketikkan “tcc -run coba1.c”. Setelah Anda menekan tombol Enter, maka akan muncul output program seperti pada Gambar 6.4.

Gambar 6.4 Contoh output program C

Latihan 6.2 Ketikkan kode program berikut dengan menggunakan editor teks Notepad. Simpan file program pada direktori C:\tcc dan beri nama latihan2.c. Jalankan program tersebut dengan menggunakan tcc. Kemudian, catat output yang dihasilkan.

#include<stdio.h> int main() { printf( "Aku belajar bahasa C! \n"); printf( "Aku pasti bisa! \n"); return 0; }

Related Documents

Tiny C Compiler
May 2020 6
C - Compiler Design In C
November 2019 18
Compiler
May 2020 15
Compiler
October 2019 27
Compiler
July 2020 10