Question
I keep returning undeclared identifier nPop[j][i] //Here is an example of how the chart might begin: PRAIRIEVILLE POPULATION GROWTH (each * represents 1,000 people) 1900
I keep returning undeclared identifier nPop[j][i]
//Here is an example of how the chart might begin: PRAIRIEVILLE POPULATION GROWTH (each * represents 1,000 people) 1900 ** 1920 **** 1940 *****
#include
int returnStar(int n[24],int p[24][24]); int getYear(int);
int main(int argc, char *argv[]) { int pop[5] = {4000, 7000, 9000}; int n[24]; int nPop[24][24]; int div[24]; // returnStar(pop,nPop); for(int i=0; i<3; i++) { n[i]=getYear(i); pop[i]=pop[i]/1000; for(int j=0; j //cout<<"Year "< //// int getYear(int year) { if (year==0) {return 1900; } if(year==1) {return 1920; } if(year==2) {return 1980; } } /////// ///// int returnStar(int n[24], int p[24][24]) { int tot=0; for (int i=0; i<3; i++) { n[i]=n[i]/1000; // tot = n[i]; for(int j=0; j
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started