Understanding function call

Hi there-
Can someone tell me what this means? It is defined within a class.
int Num (void);

And this:
void Dec(int Nov)

Thank you so much!
Nora
A (member) function named Num that takes no parameters and returns an int.
A (member) function named Dec which takes an int parameter and returns nothing.
THANKS!

What about this one?

Jan = (unsigned int)Num

Nora
The (unsigned int) is explicitly typecasting the variable 'Num' to be an unsigned integer. The casted value (assuming it is appropriate) is then stored in the variable Jan, which presumably is an unsigned integer.
Topic archived. No new replies allowed.