summaryrefslogtreecommitdiff
path: root/CST116F2021-Lab6/Lab6_Header.h
blob: 4c86919c045a622a6b81a76ee04545d381f33e00 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#pragma once
#include <iostream>
#include<iomanip>
#include<string>
using namespace std;

#define ARRAY_SIZE 10
void readData(int[ARRAY_SIZE][2], string[ARRAY_SIZE][2]);
void printData(int[ARRAY_SIZE][2], string[ARRAY_SIZE][2]);