41,050 reputation
34272
bio website
location Switzerland
age
visits member for 1 year, 4 months
seen 13 hours ago
stats profile views 932

Carve, smooth, chisel:

Let your floating dream;

Be sealed;

In the resisting block!

L’Art, Theophile Gautier


May
18
awarded  Nice Answer
May
18
answered Correct sscanf() prototype, “int sscanf ( const char * s,const char * format, …);” or int sscanf (char * s,const char * format, …);?
May
18
comment Tricky Ternary Operation in C
@JimBalter despite being both invalid I'm affraid it is equivalent
May
18
comment Tricky Ternary Operation in C
@kotlomoy the syntax rules from C and C++ are different. In C your example x<y?y:x=20 is actually equivalent to (x<y?y:x)=20 (which is invalid C) and not to x<y?y:(x=20) as you stated.
May
18
comment Tricky Ternary Operation in C
@kotlomoy In the C Standard the precedence derives from syntax but in K&R 2 you can read a quotation similar to mine: the precedence of ?: is very low, just above assignment (in an example similar to this one btw)
May
18
answered Tricky Ternary Operation in C
May
14
comment What is the difference between memcpy() and strncpy() given the latter can easily be a substitute for the former?
@KerrekSB so I added an edit to address this.
May
14
revised What is the difference between memcpy() and strncpy() given the latter can easily be a substitute for the former?
added 137 characters in body
May
14
comment What is the difference between memcpy() and strncpy() given the latter can easily be a substitute for the former?
@KerrekSB fair enough ;)
May
14
comment What is the difference between memcpy() and strncpy() given the latter can easily be a substitute for the former?
@KerrekSB but int is guaranteed to be at least 16 bits.
May
14
comment What is the difference between memcpy() and strncpy() given the latter can easily be a substitute for the former?
@KerrekSB Which part of the answer is platform specific?
May
14
comment What is the difference between memcpy() and strncpy() given the latter can easily be a substitute for the former?
Same. The null character (although located in a different place) will stop the strncpy copy.
May
14
answered What is the difference between memcpy() and strncpy() given the latter can easily be a substitute for the former?
May
13
answered What is the reason for memsetting initialized buffer
May
10
answered C - run function before/after main() ended
May
10
comment Calling C functions with too many arguments
Can you show what is the function pointer declarations in the table and the actual declaration of the function you call?
May
10
comment Printing left and right values of an avl tree
left ->right is pointer to a node not an int field of your tree.
May
9
comment What is the recommended procedure for initializing char arrays?
@EricPostpischil They shouldn't. I don't like this wording and prefer to use the standard terminology that says that arrays are converted to pointers.
May
9
comment What is the recommended procedure for initializing char arrays?
Arrays are second-class citizens in C: you cannot assign arrays, you cannot pass arrays to a function...
May
9
answered Why is {typedef int* PTR;const PTR p=&num;} not equivalent to “const int* p=&num” but to “int *const p=&num”?