Logo 
Search:

C++ Programming Articles

Submit Article
Home » Articles » C++ Programming » Object Oriented ProgrammingRSS Feeds

Program to print an array before and after adding 5 to its contents using pointers

Posted By: Easy Tutor     Category: C++ Programming     Views: 2194

A C++ Program to print an array before and after adding 5 to its contents using pointers.

Code for Program to print an array before and after adding 5 to its contents using pointers in C++ Programming

 #include<iostream.h>
 #include<conio.h>


 void print_array(int *,int);
 void modify_array(int *,int);


 main()
    {
       clrscr();

       constint array_size=10;
       int array[array_size]={0,1,2,3,4,5,6,7,8,9};

       cout<<"\n The contents of the array Before modification are : "<<endl;
       print_array(array,array_size);

       getch();
       clrscr();

       cout<<"\n The contents of the array after modification are : "<<endl;
       modify_array(array,array_size);
       print_array(array,array_size);

       getch();
       return 0;
    }

 /*************************************************************************///-----------------------  print_array(int *,int)  ----------------------///*************************************************************************/void print_array(int *ptr,int size)
    {
       cout<<"\n     Elements :"<<"\t\t     Value:"<<endl;

       for(int count=0;count<size;count++)
      {
         cout<<"\t"<<" array ["<<count<<"]"<<"\t\t"<<*ptr<<endl;
         ptr++;
      }
    }

 /*************************************************************************///-------------------------  modify_array(int *,int)  -------------------///*************************************************************************/void modify_array(int *ptr,int size)
    {
       for(int count=0;count<size;count++)
      {
         *ptr+=5;
         ptr++;
      }
    }
  
Share: 



Easy Tutor
Easy Tutor author of Program to print an array before and after adding 5 to its contents using pointers is from United States. Easy Tutor says

Hello Friends,

I am Free Lance Tutor, who helped student in completing their homework.

I have 4 Years of hands on experience on helping student in completing their homework. I also guide them in doing their final year projects.

I have share many programs on this website for everyone to use freely, if you need further assistance, than please contact me on easytutor.2ya [at the rate] gmail [dot] com

I have special discount scheme for providing tutor services. I am providing tutor service to students from various contries, currently most of my students are from United States, India, Australia, Pakistan, Germany, UK and Canada.

I am also here to expand my technical network to receive more opportunity in my career, make friends to help them in resolving their technical problem, learn and share my knowledge, If you like to be my friend, Please send me friend request.

Thanks,
Happy Programming :)

 
View All Articles

Related Articles and Code:


 
Please enter your Comment

  • Comment should be atleast 30 Characters.
  • Please put code inside [Code] your code [/Code].

 
No Comment Found, Be the First to post comment!