Operatii Asupra Cozii Prin Tipul Pointer

You might also like

Download as pptx, pdf, or txt
Download as pptx, pdf, or txt
You are on page 1of 3

/* OPERATII ASUPRA COZII

PRIN TIPUL POINTER */


 #include <stdio.h>;
 #include <conio.h>;
 #include <malloc.h>;
 #include <ctype.h>;

 typedef int tip_elem;


 struct NOD
 {
 tip_elem element;
 struct NOD *urm;
 };

 typedef struct NOD Tnod;


 typedef Tnod* ref;
 typedef struct
 {

You might also like