pastebin
| #1 paste tool since 2002
create new paste
tools
api
archive
real-time
faq
pastebin
Follow @pastebin
create new paste
trending pastes
sign up
login
my settings
my profile
My Pastes
Public Pastes
Password
2 sec ago
Untitled
6 sec ago
Untitled
8 sec ago
AAAAAA
PAWN | 12 sec ago
Untitled
12 sec ago
Untitled
18 sec ago
Untitled
C++ | 18 sec ago
Untitled
18 sec ago
Layout Width
Share Pastebin
Untitled
By: a guest | Mar 5th, 2008 | Syntax:
C
| Size: 0.14 KB | Hits: 49 | Expires: Never
Download
|
Raw
|
Embed
|
Report abuse
This paste has a previous version,
view the difference
.
#include <unistd.h>
int
main
(
int
argc
,
char
**
argv
)
{
int
i
;
for
(
i
=
0
;
i
<
1000000
;
++
i
)
{
write
(
1
,
""
,
0
)
;
}
return
0
;
}
create new paste
|
create new version of this paste
RAW Paste Data
#include <unistd.h> int main(int argc, char **argv) { int i; for (i = 0; i < 1000000; ++i) { write(1, "", 0); } return 0; }