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]
/
test_get_char.c
blob
364cfa1138532723ed05a6ee4147c8b9df8f1be6
1
#include <stdio.h>
2
3
main
()
4
{
5
int
test
;
6
int
c
;
7
8
test
=
getchar
() !=
EOF
;
9
10
printf
(
"%d
\n
"
,
test
);
11
}