void用于函数返回值,代表该函数是一个没有返回值的函数。示例:
void function( const char * );
2.参数列表中的关键字 void 表示该函数没有参数。示例:
FILE *tmpfile( void );