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
AAAAAA
PAWN | 1 sec ago
Untitled
1 sec ago
Untitled
7 sec ago
Untitled
C++ | 7 sec ago
Untitled
7 sec ago
dynamic file upload in c#
14 sec ago
Untitled
20 sec ago
Untitled
25 sec ago
Layout Width
Share Pastebin
Untitled
By: a guest | Mar 5th, 2008 | Syntax:
C
| Size: 0.17 KB | Hits: 68 | Expires: Never
Download
|
Raw
|
Embed
|
Report abuse
#include <stdio.h>
int
main
(
int
argc
,
char
**
argv
)
{
double
f
=
1.23
;
int
i
;
for
(
i
=
0
;
i
<
1000000000
;
++
i
)
{
++
f
;
}
printf
(
"%f
\n
"
,
f
)
;
return
0
;
}
create new paste
|
create new version of this paste
RAW Paste Data
#include <stdio.h> int main(int argc, char **argv) { double f = 1.23; int i; for (i = 0; i < 1000000000; ++i) { ++f; } printf("%f\n", f); return 0; }