Wednesday, April 20, 2022

Running Sum of Numbers Using Pointers in C++

 A simple running sum of numbers using pointers in C++ programming language.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.


My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.


My mobile number here in the Philippines is 09173084360.


Please subscribe to my channel  https://www.youtube.com/channel/UCOs-lpOoIeJoh6gpJthPoGg


=================================================


Want to support my channel?

GCash Account

Jake Pomperada

09173084360


Paypal

https://paypal.me/jakerpomperada


Patreon

https://www.patreon.com/jakerpomperada


Thank you very much for your support




Program Listing

#include  <iostream>


using namespace std;


int main()

{

int array[30];

int sum=0,n=0,*point;

cout << "\n\n";

cout << "\t\tRunning Sum of Numbers Using Pointers in C++";

cout << "\n\n";

cout<<"\tEnter how many elements? : ";

cin>>n;

for(int i=1;i<=n;i++) {

 cout << "\n\n";

 cout << "\tEnter Value No : "

     << i << ":";

cin>>array[i];

point = &array[i];

sum+=array[i];

cout << "\n";

cout<<"\tThe Running Sum is "

    << sum << ".";


}

cout << "\n\n";

system("pause");


}



No comments:

Post a Comment