For the following main function int _tmain(int argc, _TCHAR* argv[]) { int years[10]={2007,2008,2009,2010,2011,2012,2013,2014,2015,2016}; cout<<"Years before updating: "<

New Perspectives on HTML5, CSS3, and JavaScript
6th Edition
ISBN:9781305503922
Author:Patrick M. Carey
Publisher:Patrick M. Carey
Chapter14: Exploring Object-based Programming: Designing An Online Poker
Section14.1: Visual Overview: Custom Objects, Properties, And Methods
Problem 7QC
icon
Related questions
Question

For the following main function
int _tmain(int argc, _TCHAR* argv[])
{
int years[10]={2007,2008,2009,2010,2011,2012,2013,2014,2015,2016};
cout<<"Years before updating: "<<endl;
for(int i=0;i<10;i++)
{
cout<<*(years+i)<<"\t";
}
cout<<endl;
after_2_years(years);
cout<<"Years after updating: "<<endl;
for(int i=0;i<10;i++)
{
cout<<*(years+i)<<"\t";
}
cout<<endl;
printf("Press any key to continue,...");
char ch = getch();
return 0;
}
The result of running the program is as follows
Years before updating:
2007 2008 2009 2010 2011 2012 2013 2014 2015 2016
Years after updating:
2009 2010 2011 2012 2013 2014 2015 2016 2017 2018
Press any key to continue,...
Write the body of function after_2_years() 

Expert Solution
steps

Step by step

Solved in 4 steps with 1 images

Blurred answer
Knowledge Booster
Array
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
New Perspectives on HTML5, CSS3, and JavaScript
New Perspectives on HTML5, CSS3, and JavaScript
Computer Science
ISBN:
9781305503922
Author:
Patrick M. Carey
Publisher:
Cengage Learning