diff options
| author | Klaatu <[email protected]> | 2015-05-17 15:33:21 +1200 |
|---|---|---|
| committer | Klaatu <[email protected]> | 2015-05-17 15:33:21 +1200 |
| commit | b0de699679e8f1e39af847ed172d1ba605b4370c (patch) | |
| tree | 01dac00471d61f727394e508c613b29cff0ceae5 /misc/tryulong32.c | |
bulk upload of source
Diffstat (limited to 'misc/tryulong32.c')
| -rw-r--r-- | misc/tryulong32.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/misc/tryulong32.c b/misc/tryulong32.c new file mode 100644 index 0000000..e0adc6d --- /dev/null +++ b/misc/tryulong32.c @@ -0,0 +1,6 @@ +int main() { + unsigned long u=1,k=0; + for (; k<32; k++) u += u; + if (!u) return 0; + return 1; +} |
