10 lines
138 B
C
10 lines
138 B
C
/// cc -o hello 2.1_hello.c
|
|
/// strace -o hello.log ./hello
|
|
|
|
|
|
#include <stdio.h>
|
|
int main(void)
|
|
{
|
|
puts("hello world");
|
|
return 0;
|
|
} |