Computer Science, asked by mrunal1820, 1 month ago

Write a function prototype for the function accept which takes two
Arguments as ( int, char) and returns Boolean value.

Answers

Answered by Anonymous
2

int search (string s, char a);

int search (string s, char a);Prototype is the way of declaring a function even before defining it or calling it.

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);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);

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.

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. i) string named s ii) character named a.

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. i) string named s ii) character named a.Function name is " search " .

Similar questions