GIT.Harvie.CZ
/
mirrors
/
Programs.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Gitignore
[mirrors/Programs.git]
/
c
/
termio.c
1
#include <stdio.h>
2
#include <stdlib.h>
3
4
int
main
() {
5
unsigned char
*
lol
;
6
lol
=
malloc
(
99
*
sizeof
(
char
));
7
*
lol
=
"HAI SUXORZ!!!!
\n
"
;
8
free
(
lol
);
9
printf
(
"%s"
,
lol
);
10
}
This page took
0.54778 seconds
and
4
git commands to generate.