repo.or.cz
/
C-Programming-Examples.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Added stack address randomization example.
[C-Programming-Examples.git]
/
for.c
blob
d2c89961be942068a5e417943bfd0a6d4997ed24
1
#include <stdio.h>
2
3
main
()
4
{
5
double
nc
;
6
7
for
(
nc
=
0
;
getchar
() !=
EOF
; ++
nc
)
8
;
9
printf
(
"%.0f
\n
"
,
nc
);
10
}