This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 2 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Showing posts with label Coding. Show all posts
Showing posts with label Coding. Show all posts

Sunday, 2 April 2017

Program Palindrom Menggunakan Stack di C++

Hay teman - teman aku mau share coding nie, coding program palindrom menggunakan stack, langsung aja ke TKP....

#include <stdio.h>
#include <conio.h>
#include <string.h>

void push(char);
char pop();

Program Konversi Bilangan Desimal ke Biner Menggunakan Stack di C++

Hay teman - teman mau share coding nie, coding program konversi bilangan desimal ke biner menggunakan stack, langsung aja ya..

 #include <iostream.h>
#include <conio.h>

int MAXSTACK; typedef int itemtype;
typedef struct
{
 itemtype item[300]; int count;
}stack;