This is default featured slide 1 title

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

Sabtu, 20 Mei 2017

contoh program Stack c++

ilustrasi stack: Program stack : #include <iostream.h> #include <conio.h> #define max 10 struct Tumpukan{  int atas;    int data[max];    }T; void awal(){  T.atas=-1;    } int kosong(){  if(T.atas==-1)     return 1;    else     return 0;       } int penuh(){  if(T.atas==max-1)     return 1;  ...