index
:
53hornet/learning-c
master
Exercises from K&R C
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
hello.c
blob: b1ad9282d004dd9023e456a0fa2b51c0e6d2cf9f (
plain
) (
blame
)
1
2
3
4
5
6
7
8
#include<stdio.h> main() { printf("hello, "); printf("world."); printf("\n"); }