Computer Science, asked by rv4798029, 6 months ago

5. Give the function prototype for the function check which takes two integer arguments and return a boolean value.

Answers

Answered by harnoork613
9

int search (string s, char a);

  • Prototype is the way of declaring a function even before defining it or calling it.

Syntax: return_type function_name

(argument 1, argument 2,....) ;

int search (string s, char a) ;

  • The above prototype returns integer values.
  • Accepts two arguments 1.String named s 2.Character named a.
  • Function name is "search".
Answered by studytime2306
3

Answer:

Please follow me and mark as brainlest

Explanation:

Plz please Plz Plz

Attachments:
Similar questions