A function may require data to perform a task assiGned to it. Which component of function prototype serves this purpose?and ans the following. Pls ans this @aryamohan
Attachments:
Answers
Answered by
1
common syntax of a function prototye in c
data type function name(argument list)
for your case prototype will be....
int Sum(int starting_value ,int count)
starting_value=150 and count=10
data type function name(argument list)
for your case prototype will be....
int Sum(int starting_value ,int count)
starting_value=150 and count=10
Similar questions