what does this mean
int power10(int);
A general doubt
hello @sneha23
this is function prototype / declaration.
the way we declare any variable , in the same way we decare our function as well.
that statement give following information about function ->
a) the function name is power10
b) return type is int
c) it takes an int