educative.io

Exercises on Basic Types, Operators and Expression

what does int * solveEquation(int * myInput) means{}
I mean the *


Course: Learn C from Scratch - Learn Interactively
Lesson: Exercises on Basic Types, Operators and Expression - Learn C from Scratch

Hi @A_Huang
In the given code int * solveEquation(int * myInput) , we have declared the function pointer * solveEquation and this function takes the pointer argument of integer type int * myInput.

Hope it will help, Thank you :blush:

1 Like