Write a prototype of a method count ( ) that receives an integer and returns character?
Answers
Answered by
0
Answer:
char count( int a) ;
Explanation:
char count( int a )
{
return a ;
}
Similar questions