ASDV-WebDev/Semester 3/Assignments/functions/arrays.h

22 lines
473 B
C
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
* Click nbfs://nbhost/SystemFileSystem/Templates/cppFiles/class.h to edit this template
*/
/*
* File: arrays.h
* Author: caleb
*
* Created on March 1, 2024, 11:11AM
*/
#ifndef ARRAYS_H
#define ARRAYS_H
void initializeArray (int arr[], const int size);
void printArray(int arr[], const int size);
int& returnReference (int & x);
#endif /* ARRAYS_H */