⚲
Project
General
Profile
Sign in
Home
Projects
Help
Search
:
DragonFlyBSD
All Projects
DragonFlyBSD
Overview
Activity
Roadmap
Issues
Documents
Files
Repository
Download (204 Bytes)
Bug #1710
ยป div128.c
davshao
, 03/30/2010 04:21 PM
#include
<inttypes.h>
#include
<stdio.h>
int
main
(
void
)
{
__uint128_t
num
=
1000
;
__uint128_t
denom
=
10
;
__uint128_t
res
=
num
/
denom
;
printf
(
"Result = %ju
\n
"
,
(
uintmax_t
)
res
);
return
0
;
}
(1-1/1)
Loading...