Initial commit

This commit is contained in:
2020-12-07 09:58:52 +01:00
commit a390fdc558
8 changed files with 630 additions and 0 deletions

22
main.cpp Normal file
View File

@@ -0,0 +1,22 @@
#include "LinearSearch.h"
#include <iostream>
using namespace std;
#define MAX_SIZE 100
int main()
{
int a[MAX_SIZE];
int size_ref = 0;
Print(a, size_ref);
cout << endl;
cout << "\tFill:" << endl;
Read(a, size_ref, MAX_SIZE);
cout << endl;
Print(a, size_ref);
}