aboutsummaryrefslogtreecommitdiff
path: root/Project1/program.cpp
blob: ddd5d5856584fafbcaa5df47761025af9b13055e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// name: Connor McDowell
// date: 2/10/2024
// class: CST116
// Reason: lab #1

#include <iostream>
#include <array>
#include <vector>
#include "helper.h"



int main()
{
	int cArray[SIZE];

	for(int i = 0; i < SIZE; i++)
	{
		cArray[i] = i;
	}

	int t;

	
	std::array<int, SIZE> stdArray = {  };

	for(int t = 0; t < SIZE; t++)
	{
		stdArray[t] = t;
	}

	Print_std(&stdArray);

	/*Print(cArray);*/



	return 0;
}