diff options
| author | Zhineng Li <[email protected]> | 2026-01-10 16:37:39 +0800 |
|---|---|---|
| committer | Zhineng Li <[email protected]> | 2026-01-10 16:37:39 +0800 |
| commit | 49891f6bce29843f503b437c84d83cb787ecfa87 (patch) | |
| tree | 50bd44422a907b869a6d4839df436f37a35be36d /ch01/ex02-exp.c | |
| download | c-knr-exercises-49891f6bce29843f503b437c84d83cb787ecfa87.tar.gz c-knr-exercises-49891f6bce29843f503b437c84d83cb787ecfa87.zip | |
first commit
Diffstat (limited to 'ch01/ex02-exp.c')
| -rw-r--r-- | ch01/ex02-exp.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ch01/ex02-exp.c b/ch01/ex02-exp.c new file mode 100644 index 0000000..dcc46dd --- /dev/null +++ b/ch01/ex02-exp.c @@ -0,0 +1,6 @@ +#include <stdio.h> + +int main() +{ + printf("hello, world\c"); +} |
