Ask your own question, for FREE!
Computer Science 19 Online
OpenStudy (anonymous):

Exercise 1: Write down a C program in order to:  Read two integer values x and y.  Compute their sum, storing it into an additional variable.  Display the result of the addition on screen. Is it possible to solve the same problem without using the additional variable?

OpenStudy (anonymous):

yes very possible. i don't know about C language but in C++ that is #include <iostream> using std::cout; using std::cin; using std::endl; int main() { int x=0,y=0; int sum=0; cout<<"please enter two integers :"<<endl; cin>>x>>y; sum=x+y; cout<<"your sum is :"<<sum<<endl; return 0; }

OpenStudy (rsmith6559):

x += y; printf( "%d\n", &x );

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Latest Questions
Mari103: How to pop out like a Jacc In the box
31 minutes ago 0 Replies 0 Medals
Breathless: Spooky witch but cute
7 hours ago 3 Replies 0 Medals
Arriyanalol: help
7 hours ago 10 Replies 2 Medals
Arriyanalol: @tinydinoUwU stop trying to find a argument u blad lil boy
1 day ago 5 Replies 4 Medals
Jaded012023: Please tell me what you all think of this song
10 hours ago 6 Replies 1 Medal
Arriyanalol: bro how
10 hours ago 2 Replies 3 Medals
Arriyanalol: cant wait for the new bluey movie in 2027
1 day ago 12 Replies 2 Medals
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!