#include
void func(int);
main(){
void (*fp)(int);
fp = func;
(*fp)(1);
fp(2);
exit(EXIT_SUCCESS);
}
void
func(int arg){
printf("%d\n", arg);
}
All hardware and software things including network, system, UI, maintaining tools and the information security field
參數:-c, --bytes 印出位元數-m, --chars 印出字數 印出該文件有幾個字-l, --lines 印出該文件有幾行 -L, --max-line-length 印出該文件最長的那行有幾字-w, --words 印出單字數目This is just a note to prevent me forgot it. :P