标签: c posix system-calls
如何使用syscall()函数重写下面的程序来自行进行系统调用,而不是使用内置的printf? (我对Linux感兴趣,如果这有任何区别的话。)
syscall()
printf
#include<stdio.h> main() { printf("Hello World"); }