cozi(variabila globala, locala)

Download Cozi(Variabila Globala, Locala)

If you can't read please download the document

Upload: dragu-stelian

Post on 14-Nov-2015

213 views

Category:

Documents


0 download

DESCRIPTION

Structuri de date

TRANSCRIPT

Untitled

#include #include #define STACKSIZE 5using namespace std;

void push(int);int empty();int pop();int stacktop();void show();

struct stack{ int top; int items[STACKSIZE];};struct stack s;

int main(){ int x, ch; s.top=-1; do { cout