I am writing a simple program that uses functions found in different .cpp files. All of my prototypes are contained in a header file. I pass some of the functions into other fun
#include "header.h" int estimatedPopulation (int currentPopulation, float growthRate) { return currentPopulation + currentPopulation * growthRate / 100; }