diff options
| author | Steve Lee <me@xiangyangli.com> | 2016-10-25 01:46:39 +0800 |
|---|---|---|
| committer | Steve Lee <me@xiangyangli.com> | 2016-10-25 01:46:39 +0800 |
| commit | 527c65ca2e4ec5095171345502dfa38a18e97a7f (patch) | |
| tree | 4b7bf522071fa60aef1eda3cc3fa81c62bfd0643 /SICP/c.c | |
| parent | 9f3c370ed0af17c0b603847143ca9fbdf25536e7 (diff) | |
| download | Personal-527c65ca2e4ec5095171345502dfa38a18e97a7f.tar.xz Personal-527c65ca2e4ec5095171345502dfa38a18e97a7f.zip | |
add SICP exercise solutions
Diffstat (limited to 'SICP/c.c')
| -rw-r--r-- | SICP/c.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/SICP/c.c b/SICP/c.c new file mode 100644 index 0000000..fae921b --- /dev/null +++ b/SICP/c.c @@ -0,0 +1,8 @@ +#include <stdio.h> + +int main() +{ + printf("hello world\n"); + return 0; + +} |
