- #1
woofr_87
- 4
- 0
Hye.. i got this source code from internet.. i want to ask some quetion..
here is the source code. but not a full code..
what definition/meaning of "#define cont 32767" at line 5...can someone describe to me...thanks..
here is the source code. but not a full code..
PHP:
include <stdio.h>
#include <conio.h>
#include <stdlib.h>
#define cont 32767
typedef struct dnode
{
struct dnode *prev;
int val;
struct dnode *next;
}DNODE;
DNODE *rt;
void insert()
{
DNODE *temp,*temp1,*temp2;
int i;
printf("\nEnter the value of node:");
scanf("%d",&i);
temp=(DNODE*)malloc(sizeof(DNODE));
temp->val=i;
if(rt==NULL)