Kod: #include #include #define SIZE 7 struct n { char info; struct n * next; struct n * prev; struct n * left; struct n * right; }; typedef struct n node; int array[SIZE]={1,2,3,4,5,6,7}; int main(int argc, char *argv[])
B code in C // Petroff ``Soruyu Soran :
Kod: #include
#include
#define SIZE 7
struct n {
char info;
struct n * next;
struct n * prev;
struct n * left;
struct n * right;
};
typedef struct n node;
int array[SIZE]={1,2,3,4,5,6,7};
int main(int argc, char *argv[])