Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Give the output from this program. #include void fun1 (int, int): void fun2 (int *, int *): int main () { int x, y: x

image text in transcribed
Give the output from this program. #include void fun1 (int, int): void fun2 (int *, int *): int main () { int x, y: x = 43: y = -13: print f("%d %d", x, y): fun1 (x, y): print f("%d %d ", x, y): fun2 (&x, &y): print f("%d %d ", x, y): return 0: } void fun1 (int a, int b) { a = a + 2: b = b - a: printf ("%d %d ", a, b): } void fun2 (int *s, int *t) (*s = *s + *t: *t = *s - *t: printf("%d %d ", *s, *t) }

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Case Studies In Business Data Bases

Authors: James Bradley

1st Edition

0030141346, 978-0030141348

More Books

Students also viewed these Databases questions

Question

Define humanised Big Data.

Answered: 1 week ago

Question

Are these written ground rules?

Answered: 1 week ago

Question

How do members envision the ideal team?

Answered: 1 week ago

Question

Has the team been empowered to prioritize the issues?

Answered: 1 week ago