Recent News

Struktur data array

Posted by evanlr on September 25th, 2008

Array adalah kumpulan index dan nilai yang berpasangan. Lebih jelasnya jalankan program ini:

1
2
3
4
5
6
7
8
9
10
11
#include <iostream>
 
using namespace std;
 
int main (  )
{
    char *listName[] = { "petr", "acrush", "tomek", "eryx" };
 
    for( int i = 0; i < 4; ++i )
        cout << "index: " << i << ", value: " << listName[i] << endl;
}

Harusnya sih semua orang yang pernah belajar pemrograman, pasti tau konsep struktur data yang satu ini. :D

Istilah-istilah dalam teori graph

Posted by evanlr on September 24th, 2008

Read the rest of this entry »

Recent Comments | Recent Posts


designed by: Website Builder | Coded by: Blog Directory | Provided by: Wedding photojournalism chicago
bottom