<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:blogger='http://schemas.google.com/blogger/2008' xmlns:georss='http://www.georss.org/georss' xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-7412066067609774065</id><updated>2024-11-06T09:59:23.579+07:00</updated><category term="C Programs"/><title type='text'>Compile Code</title><subtitle type='html'>Belajar Pemrograman Itu Menyenangkan</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='https://compile-code.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/7412066067609774065/posts/default'/><link rel='alternate' type='text/html' href='https://compile-code.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/16310065662461263786</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>1</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-7412066067609774065.post-40922529580599368</id><published>2016-08-26T16:36:00.000+07:00</published><updated>2016-08-26T16:41:58.576+07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="C Programs"/><title type='text'>Belajar Bahasa C Menggunakan Code::Blocks</title><content type='html'>&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgjUhqULPRLcikkAwOJ2zs2vkhjTXWgu1hNO_kdWn6P3tt-D2P4e9nV9mBudcm54thceXBNYyA1QhSWfTtdgoqifiolnmkXxCcUwaPHICygN4hCaRX9U7Nm0QsXM9jR1vkCEn9gszTyhVq4/s1600/gambar+codeblocks.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;Contoh gambar Code::Blocks | Compile Code&quot; border=&quot;0&quot; height=&quot;274&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgjUhqULPRLcikkAwOJ2zs2vkhjTXWgu1hNO_kdWn6P3tt-D2P4e9nV9mBudcm54thceXBNYyA1QhSWfTtdgoqifiolnmkXxCcUwaPHICygN4hCaRX9U7Nm0QsXM9jR1vkCEn9gszTyhVq4/s640/gambar+codeblocks.png&quot; title=&quot;Gambar Code::Blocks | Compile Code&quot; width=&quot;640&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
Code::Blocks merupakan software pemrograman yang dapat anda gunakan untuk membuat program yang memiliki bahasa pemrograman C, C++, dan Fortran IDE, software ini mempunyai banyak sekali fitur-fitur yang mempermudah aktivitas &lt;i&gt;coding&lt;/i&gt; kita seperti :&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;Support multiple compiler (GCC, MSVC++, clang, Borland C++, dan lain-lain)&lt;/li&gt;
&lt;li&gt;Debugger&lt;/li&gt;
&lt;li&gt;serta Interface yang mudah digunakan&lt;/li&gt;
&lt;/ul&gt;
&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;Dan kali ini saya akan memberikan contoh membuat sebuah program sederhana dalam bahasa C menggunakan Code::Blocks. Pertama anda harus mempunyai software Code::Blocks yang sudah terinstall di PC anda, jika belum mempunyai anda dapat download di link berikut :&lt;br /&gt;
&lt;div&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;a href=&quot;http://www.codeblocks.org/downloads/26&quot; target=&quot;_blank&quot;&gt;Download Code::Blocks&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
Setelah anda install software tersebut buka Code::Blocks dan pilih File &amp;gt;&amp;gt; New &amp;gt;&amp;gt; File...&lt;br /&gt;
pilih C/C++ source dan klik Go &amp;gt;&amp;gt; Next &amp;gt;&amp;gt; pilih C (jangan salah pilih karena bahasa C dan C++ berbeda) kemudian beri nama file yang akan dibuat, contoh test dan pilih folder tempat penyimpanannya lalu Finish dan masukkan kode yang ada di bawah ini :&lt;br /&gt;
&lt;pre data-codetype=&quot;Codeku&quot; title=&quot;Test.c&quot;&gt;&lt;code class=&quot;language-css&quot;&gt;
#include &quot;stdio.h&quot;
/// by Compile Code
/// 26 Agustus 2016
// Deskripsi
int main ()
{
    printf(&quot;Hello world\n&quot;);
    printf(&quot;This Is My First Time I Study Program\n&quot;);
    printf(&quot;Visit Compile Code www.compile-code.blogspot.com For more incredible programs\n&quot;);
}
&lt;/code&gt;&lt;/pre&gt;
&lt;br /&gt;
Lalu tekan Build and Run / F9 pada keyboard&lt;br /&gt;
Maka hasil dari kode-kode diatas adalah seperti ini :&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEivflfDzpIgAdk3QzZTPTSn6TVoYiCo98-bV5tbYSFzUj5uXVBeQhFTnhCgpDXYFM6QXY1eesRPk8b1ZWn-lfnD_wQciPSH-Lw8LiDA6voSFqgfwCPIrmKRvqJHS-M8ctu7REMIRBZOX3Ft/s1600/hasil.png&quot; imageanchor=&quot;1&quot; style=&quot;clear: left; margin-bottom: 1em;&quot;&gt;&lt;img alt=&quot;Contoh Hasil Program C | Compile Code&quot; border=&quot;0&quot; height=&quot;320&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEivflfDzpIgAdk3QzZTPTSn6TVoYiCo98-bV5tbYSFzUj5uXVBeQhFTnhCgpDXYFM6QXY1eesRPk8b1ZWn-lfnD_wQciPSH-Lw8LiDA6voSFqgfwCPIrmKRvqJHS-M8ctu7REMIRBZOX3Ft/s640/hasil.png&quot; title=&quot;Hasil Program C | Compile Code&quot; width=&quot;640&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
#include &quot;stdio.h&quot; merupakan perintah untuk memasukkan input output di program&lt;br /&gt;
int main merupakan tubuh / body yang berisi perintah pada program&lt;br /&gt;
printf adalah perintah untuk menampilkan sebuah karakter&lt;br /&gt;
\n untuk berpindah pada baris yang baru / Enter&lt;br /&gt;
&lt;br /&gt;
Atau bagi anda yang ingin mendownload program ini bisa klik tombol dibawah :&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;ul class=&quot;button&quot;&gt;
&lt;li&gt;&lt;a class=&quot;download&quot; href=&quot;https://drive.google.com/file/d/0Bwy-Tpf1KW55WGh0RHFyRVByTG8/view?usp=sharing&quot; target=&quot;_blank&quot;&gt;DOWNLOAD HERE&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
Demikian penjelasan saya mengenai Belajar Bahasa C Menggunakan Code::Blocks, semoga memberi manfaat dan kebaikan untuk kita semua. Terima Kasih&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='https://compile-code.blogspot.com/feeds/40922529580599368/comments/default' title='Posting Komentar'/><link rel='replies' type='text/html' href='https://compile-code.blogspot.com/2016/08/belajar-bahasa-c-menggunakan-codeblocks.html#comment-form' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='https://www.blogger.com/feeds/7412066067609774065/posts/default/40922529580599368'/><link rel='self' type='application/atom+xml' href='https://www.blogger.com/feeds/7412066067609774065/posts/default/40922529580599368'/><link rel='alternate' type='text/html' href='https://compile-code.blogspot.com/2016/08/belajar-bahasa-c-menggunakan-codeblocks.html' title='Belajar Bahasa C Menggunakan Code::Blocks'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/16310065662461263786</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgjUhqULPRLcikkAwOJ2zs2vkhjTXWgu1hNO_kdWn6P3tt-D2P4e9nV9mBudcm54thceXBNYyA1QhSWfTtdgoqifiolnmkXxCcUwaPHICygN4hCaRX9U7Nm0QsXM9jR1vkCEn9gszTyhVq4/s72-c/gambar+codeblocks.png" height="72" width="72"/><thr:total>0</thr:total></entry></feed>