17 lines
284 B
C
17 lines
284 B
C
// includes
|
|
#include <stdio.h>
|
|
#include <time.h>
|
|
|
|
// defines
|
|
#define ARRLENGTH 6
|
|
|
|
// function declarations
|
|
void Initialize();
|
|
int Input(int[]);
|
|
void Output(int);
|
|
int CheckGuess(int[], int[]);
|
|
void RanArray_Fill(int[]);
|
|
int RanNum();
|
|
int CheckNotInNums(int[], int);
|
|
int ValidNum(int);
|