Initial commit
This commit is contained in:
22
main.cpp
Normal file
22
main.cpp
Normal 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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user