Viewing profile — je-so
je-so
HN member- Joined
- Fri, Dec 12, 2014, 6:34 AM UTC
- HN karma
- 8
- Public activity
- 4 items
- HN profile
- View on Hacker News ↗
About je-so
No profile information was provided.
Recent public activity
-
comment
Comment #10967012
Personal space is a natural right! Even animals has this right except farm animals.
-
comment
Comment #9764570
If you know that sizeof(float) >= sizeof(int) the memory alignment should be fine. Also in this case * (int* )&a does not access any bytes outside of an defined data object. To pre…
-
comment
Comment #9243363
Another interesting thing to know about pointer and arrays is: #include typedef int a_t[100]; int main(void) { int a[100]; a_t* p = &a; // all printed pointer values are equal prin…
-
comment
Comment #8738836
(See http://pastebin.com/KypbginU ) // corrected overflow hget for (int k2=k,o=0; t[k&(SIZE-1)] && **t[k&(SIZE-1)] != k2 && o // hset now allows overwrite for (int (**a)[2] = hget(…