code:
#include <stdio.h>
#include <stdint.h>
int main(int argc, char *argv[]) {
printf("%lu\n%lu\n%lu\n%lu\n%lu\n%lu\n%lu\n",
UINT32_MAX,
UINT32_MAX,
UINT32_MAX,
UINT32_MAX,
UINT32_MAX,
UINT32_MAX,
UINT32_MAX);
return 0;
}
output:
4294967295
4294967295
4294967295
4294967295
4294967295
18446744073709551615
18446744073709551615
bug or intentional? and why? i think it speaks for itself but the interface needs me to add more lines before i can post it (to much code for to less text lol)