What is the output from this program? #include void do_something (int * thisp, int that) { int the_other; the_other = 5; that = 2 + the_other; * thisp = the_other * that; } int main (void) { int first, second; first = 1; second = 2; do_something (&second, first); printf ("%4d%4d/n", first, second); return (0); }
+2
Answers (1)
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “What is the output from this program? #include void do_something (int * thisp, int that) { int the_other; the_other = 5; that = 2 + ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Home » Computers & Technology » What is the output from this program? #include void do_something (int * thisp, int that) { int the_other; the_other = 5; that = 2 + the_other; * thisp = the_other * that; } int main (void) { int first, second; first = 1; second = 2;