C++ skill

void cast of argc and argv

stop the compiler from complaining about unused variables

int main(int argc, char **argv)
{
(void)argc; /* we don't use any arguments in this example */
(void)argv;
return 0;
}

你可能感兴趣的:(kill)