摘要:
ERROR: Kernel configuration is invalid. include/generated/autoconf.h or include/config/auto.conf are missing. Run 'make oldconfig && make prepare' on 阅读全文
摘要:
#include #include #include int main(int argc, char argv[]) { time_t t; time(&t); printf(" second is %ld\n",t); sleep(1); t = time(NULL); printf(" second ... 阅读全文
摘要:
#include int main(int argc, char *argv[]) { printf("the program is %s\n", argv[0]); int i = argc; printf("the num of arg is %d\n", argc); for(i=1; i<argc; i++) { ... 阅读全文