Badge
| Nice Answer | Answer score of 10 or more. This badge can be awarded multiple times. |
R.. earned this badge 82 times |
may 2 at 2:57
What does the FD_CLOEXEC fcntl() flag do?
apr 22 at 13:07
When is uint8_t ≠ unsigned char?
apr 18 at 16:48
What things (or in what cases) can make C++ slower than C ?
mar 18 at 5:02
Parse string into argv/argc
mar 8 at 9:08
Anonymous union within struct not in c99?
mar 5 at 19:55
There is no point in freeing blocks at end of program?
feb 25 at 8:56
#ifdef vs #if - which is better/safer?
jan 28 at 7:51
atoi implementation in C
jan 28 at 5:41
stdout thread-safe in C on Linux?
jan 7 at 13:21
C - gettimeofday for computing time?
dec 20 at 19:46
What does the abbreviation “s_”, “ai_”, “sin_”, “in” (if such) in the IP structures mean?
dec 15 at 12:54
Trouble with bitwise manipulation
dec 11 at 14:57
Flip all groups of consecutive 0 bits of size <= N to 1s
nov 26 at 20:34
Is there a printf converter to print in binary format?
nov 22 at 19:23
c difference between malloc and calloc
nov 8 at 5:40
Distinction between processes and threads in Linux
nov 5 at 15:40
psuedo global variable in c
oct 20 at 17:19
What is the safe alternative to realpath()?
oct 12 at 7:02
What is the simplest way of implementing bigint in C?
oct 10 at 9:56
What can cause exec to fail? What happens next?
aug 24 at 18:51
Can a near-zero floating value cause a divide-by-zero error?
aug 14 at 6:17
Understanding the different clocks of clock_gettime()
jun 19 '12 at 23:17
Counting Pi in threads
may 30 '12 at 13:02
Why does the general program usually start at 0x8000?
may 29 '12 at 3:09
IEEE Std 754 Floating-Point: let t := a - b, does the standard guarantee that a == b + t?
may 10 '12 at 19:03
gcc: why the -lm flag is needed to link the math library?
apr 26 '12 at 17:11
How dangerous is it to compare floating point values?
apr 18 '12 at 7:22
convert string to integer sscanf or atoi
apr 5 '12 at 14:35
What's the rationale for null terminated strings?
apr 2 '12 at 17:34
What does “#define _GNU_SOURCE” imply?
mar 20 '12 at 10:33
Is max(a,b) defined in stdlib.h or not?
feb 14 '12 at 1:42
Does the current C standard prohibit short-circuiting `&` and `|`?
jan 20 '12 at 18:25
Syscall overhead
dec 9 '11 at 7:54
typedef fixed length array
dec 6 '11 at 11:14
How could I temporary redirect stdout to a file in a C program?
dec 4 '11 at 17:04
Good practices for writing C dynamic libraries [DSOs] (binary compatibility + memory management)
nov 26 '11 at 7:59
remove all occurences of a character in C string - Example needed
nov 1 '11 at 20:45
Shorthand byte notation in C/C++?
oct 18 '11 at 16:22
storing more than 2 power 31 on a 32-bit system
oct 13 '11 at 16:35
How does gcc calculate the required space for a structure?
oct 4 '11 at 9:12
What is this mysterious macro plus sign in stdint.h?
sep 27 '11 at 2:40
Short-circuiting on boolean operands without side effects
sep 8 '11 at 16:10
Are C functions guaranteed to have a fixed memory address?
sep 7 '11 at 4:48
Adding unsigned integers in C
aug 28 '11 at 0:40
Linux heap - is doing a ton of new/deletes okay or does the heap become badly fragmented?
aug 8 '11 at 13:40
Opaque C structs: how should they be declared?
aug 6 '11 at 18:42
Why declare a struct that only contains an array in C?