index
:
csapp.git
master
Unnamed repository; edit this file 'description' to name the repository.
Mike Vink
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
code
/
intro
/
hello.c
blob: b9dbb17b54e2c461f574168a8afa40879571ab4b (
plain
)
1
2
3
4
5
6
7
#include <stdio.h>
int
main
()
{
printf
(
"hello, world
\n
"
);
return
0
;
}