Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

What would be the output of the following code? #include int mysteryFunction 1 ( int a , int b ) ; int mysteryFunction 2 (

What would be the output of the following code?
#include
int mysteryFunction1(int a, int b);
int mysteryFunction2(int a);
int main()
{
// pointer to a function
int (*functionPtr1)(int, int)= &mysteryFunction1;
int (*functionPtr2)(int)= &mysteryFunction2;
printf("%d",(*functionPtr2)(10));
return 0;
}
int mysteryFunction1(int a, int b)
{
return a * b;
}
int mysteryFunction2(int a)
{
return a * a;
}

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

DNA Databases

Authors: Stefan Kiesbye

1st Edition

0737758910, 978-0737758917

More Books

Students also viewed these Databases questions

Question

5. Understand how cultural values influence conflict behavior.

Answered: 1 week ago