06 2024 档案
摘要:一、对应函数 fprintf fprintf(stdout, "hello, %s", "world"); sprintf char buf[20]; sprintf(buf, "hello, %s", "world"); 文件缓冲区大小 FILE *fp = stdin; char str[20]
阅读全文
摘要:例子如下: objects = hello.o world.o objects += main.o main:$(objects) gcc main.o hello.o world.o -o main hello.o: hello.c hello.h gcc -c hello.c -o hello.
阅读全文