This time i want to share my experience when i was take data structure practical…
At the first time when the assistant teach me, wow i can’t understand anything how can a data can be store the same type as itself??
Node is an object which is built for storing information and it’s has a door the [...]
Iseng-iseng saya mencoba mengetest kecepatan internet saya dengan speedtest.net, ternyata ada pilihan untuk melihat kecepatan internet lain yang ada diseluruh dunia ini. Nah saat itu saya coba-coba lihat internet mana sih yang paling cepat di Indonesia ini. Hasilnya? seperti yang dapat dilihat di gambar yang ada diatas, disana tertulis 10 ISP Indonesia tercepat dalam hal [...]
Driver for Mobile Intel(R) 965 Express Chipset Family, i used it because when i bought an Acer Aspire 4315. the driver for CD isn’t work
Want it? just click >> download here
Morse code also can be implemented to a programming langusage.
The codes on morse can be represented by a binary tree like below.
The picture above is a represent of morse code on binary tree shape, let’s assumed that the left side is dash (-) and the right side is dot (.). Then, how to construct the [...]
Marquee is a tag of HTML which used to move the others html objects. This way is the most simple way to give an animation effect on website, and the way just like this :
<marquee>This is using marquee</marquee>
This is using marquee
Tag of marquee also have attribute which can be modified as user wants, the example [...]
#include "stdio.h"
#include "conio.h"
#include "stdlib.h"
#include "unistd.h"
void printBoard(int**,int);
void clearBoard(int**,int);
void traceKnight(int**,int,int,int,int,int*);
int main(){
int matrix;
printf("Masukkan ukuran kotak : ");
scanf("%d",&matrix);
int** board;
board = (int**) malloc (sizeof(int)*matrix);
int ind = 0;
while (ind<matrix){
board[ind] = (int*) malloc (sizeof(int)*matrix);
ind++;
}
clearBoard(board,matrix);
int checker = 0;
traceKnight(board,matrix,1,0,0,&checker);
printBoard(board,matrix);
getch();
return 0;
}
void traceKnight(int** board, int matrix, int step, int y, int x, int* checker){
if (y < 0 || y > matrix-1 || x < 0 || [...]
For the first, i will share an experience how to install wordpress blog machine on your own host. In this post you can find the host is your own PC as the web server.
The first thing that needed to using wordpress on your computer is webserver software, i recommend XAMPP for the software because it’s [...]
Make an Ubuntu live CD isn’t too difficult, because we will get started with the original Ubuntu live CD and then from that original live CD we will customize it.
Open Terminal, and prepare hardisk spaces space from 4 to 6 GB and RAM at least 512 MB
Make sure you already installed packages for customizing Ubuntu [...]
#include "stdio.h"
#include "conio.h"
void pindah(int jumlah, char asal, char bantu, char tujuan)
{
if (jumlah==0)
{
return;
}
else
{
pindah(jumlah-1,asal,tujuan,bantu);
[...]
Copyright © 2010 I Made Krisna's Times
Just share our knowledge for the better future of this world
Proudly powered by WordPress & Shine by Creamy
W3C: Valid XHTML - Valid CSS 3
Recent Comments