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
/
2
/
homework
/
2.87.c
blob: 5d8a0326b222bbd510ea11d55c9a5317eb45ebb2 (
plain
)
1
2
3
4
5
6
#include <stdio.h>
int
main
(
void
) {
printf
(
"
%f
\n
"
,
1023.0
f
/(
1
<<
25
));
return
0
;
}