Write a function that takes an int argument and doubles it . the function does not return any value
Answers
Answered by
18
void DISPLAY(int a)
{
int d ;
d = 2a ;
}
vineeth41:
thanks
Similar questions