Possible Duplicate:
casting unused return values to void
Need for prefixing a function with (void)
Casting function returns to void
Have seen in quite few places that while invoking the function why do we explicitly the return type of the function ? ex:
(void) myhostnames ( char * something);
What is use of this (void), and how it differs from not using the same ? Kindly clarify.