Hye.. i got this source code from internet.. i want to ask some quetion..
here is the source code. but not a full code..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...
hye everyone...this program have an error..
#include<stdio.h>
#define MAX 10
struct book
{
char title[81];
char author[71];
char category[31];
};
int main()
{
struct book library[MAX];
int menu(void);
struct book add(void);
void list (struct book, int);
int...
hye everyone...
i want to build a program where the program with a function that returns a pointer to the maximum value of an array of double. if the array is empty, the program should return NULL.
here is my code, but still have an error... every week i try to solve this problem...