User Chris Young - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T14:22:46Z http://stackoverflow.com/feeds/user/9417 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1564701/pointer-to-literal-value/1564792#1564792 2 Answer by Chris Young for Pointer to literal value Chris Young 2009-10-14T07:35:02Z 2009-10-14T07:51:52Z <p>C simply does not allow the address of character literals like 'A'. For what it's worth, the type of character literals in C is int (char in C++ but this question is tagged C). 'A' would have an implementation defined value (such as 65 on ASCII systems). Taking the address of a value doesn't make any sense and is not possible.</p> <p>Now, of course you <strong>may</strong> take the address of other kinds of literals such as string literals, for example the following is okay:</p> <pre><code>write(fd, "potato", sizeof "potato"); </code></pre> <p>This is because the string literal "potato" is an array, and its value is a pointer to the 'p' at the start.</p> <p>To elaborate/clarify, you may only take the address of objects. ie, the &amp; (address-of) operator requires an object, not a value.</p> <p>And to answer the other question that I missed, C doesn't allow non-constant case labels, and this includes variables declared const.</p> http://stackoverflow.com/questions/894300/when-zeroing-a-struct-such-as-sockaddrin-sockaddrin6-and-addrinfo-before-use 1 When zeroing a struct such as sockaddr_in, sockaddr_in6 and addrinfo before use, which is correct: memset, an initializer or either? Chris Young 2009-05-21T18:15:27Z 2009-05-21T19:22:16Z <p>Whenever I look at real code or example socket code in books, man pages and websites, I almost always see something like:</p> <pre><code>struct sockaddr_in foo; memset(&amp;foo, 0, sizeof foo); /* or bzero(), which POSIX marks as LEGACY, and is not in standard C */ foo.sin_port = htons(42); </code></pre> <p>instead of:</p> <pre><code>struct sockaddr_in foo = { 0 }; /* if at least one member is initialized, all others are set to zero (as though they had static storage duration) as per ISO/IEC 9899:1999 6.7.8 Initialization */ foo.sin_port = htons(42); </code></pre> <p>or:</p> <pre><code>struct sockaddr_in foo = { .sin_port = htons(42) }; /* New in C99 */ </code></pre> <p>or: </p> <pre><code>static struct sockaddr_in foo; /* static storage duration will also behave as if all members are explicitly assigned 0 */ foo.sin_port = htons(42); </code></pre> <p>The same can also be found for setting struct addrinfo hints to zero before passing it to getaddrinfo, for example.</p> <p>Why is this? As far as I understand, the examples that do not use memset are likely to be the equivalent to the one that does, if not better. I realize that there are differences:</p> <ul> <li>memset will set all bits to zero, which is not necessarily the correct bit representation for setting each member to 0.</li> <li>memset will also set padding bits to zero.</li> </ul> <p>Are either of these differences relevant or required behavior when setting these structs to zero and therefore using an initializer instead is wrong? If so, why, and which standard or other source verifies this? </p> <p>If both are correct, why does memset/bzero tend to appear instead of an initializer? Is it just a matter of style? If so, that's fine, I don't think we need a subjective answer on which is better style.</p> <p>The <em>usual</em> practice is to use an initializer in preference to memset precisely because all bits zero is not usually desired and instead we want the correct representation of zero for the type(s). Is the opposite true for these socket related structs?</p> <p>In my research I found that POSIX only seems to require sockaddr_in6 (and not sockaddr_in) to be zeroed at <a href="http://www.opengroup.org/onlinepubs/000095399/basedefs/netinet/in.h.html" rel="nofollow">http://www.opengroup.org/onlinepubs/000095399/basedefs/netinet/in.h.html</a> but makes no mention of how it should be zeroed (memset or initializer?). I realise BSD sockets predate POSIX and it is not the only standard, so are their compatibility considerations for legacy systems or modern non-POSIX systems?</p> <p>Personally, I prefer from a style (and perhaps good practice) point of view to use an initializer and avoid memset entirely, but I am reluctant because:</p> <ul> <li>Other source code and semi-canonical texts like <a href="http://www.kohala.com/start/unpv12e.html" rel="nofollow">UNIX Network Programming</a> use bzero (eg. page 101 on 2nd ed. and page 124 in 3rd ed. (I own both)).</li> <li>I am well aware that they are not identical, for reasons stated above.</li> </ul> http://stackoverflow.com/questions/848705/why-is-2myarray-valid-c-syntax/848709#848709 17 Answer by Chris Young for Why is 2[myArray] valid C syntax? Chris Young 2009-05-11T15:41:28Z 2009-05-11T15:41:28Z <p>in C, a[b] is equivalent to *(a + b). And, of course, the + operator is commutative, so a[b] is the same as b[a] is the same as *(b + a) is the same as *(a + b).</p> http://stackoverflow.com/questions/625270/does-malloc-allocate-a-contiguous-block-of-memory/625430#625430 17 Answer by Chris Young for Does malloc() allocate a contiguous block of memory? Chris Young 2009-03-09T08:40:27Z 2009-03-14T12:14:52Z <p>To answer your numbered points.</p> <ol> <li>Yes.</li> <li>All the bytes. Malloc/free doesn't know or care about the type of the object, just the size.</li> <li>It is strictly speaking undefined behaviour, but a common trick supported by many implementations. See below for other alternatives.</li> </ol> <p>The latest C standard, ISO/IEC 9899:1999 (informally C99), allows <a href="http://www.comeaucomputing.com/techtalk/c99/#flexiblearrays" rel="nofollow">flexible array members</a>.</p> <p>An example of this would be:</p> <pre><code>int main(void) { struct { size_t x; char a[]; } *p; p = malloc(sizeof *p + 100); if (p) { /* You can now access up to p-&gt;a[99] safely */ } } </code></pre> <p>This now standardized feature allowed you to avoid using the common, but non-standard, implementation extension that you describe in your question. Strictly speaking, using a non-flexible array member and accessing beyond its bounds is undefined behaviour, but many implementations document and encourage it.</p> <p>Furthermore, <a href="http://gcc.gnu.org/" rel="nofollow">gcc</a> allows <a href="http://gcc.gnu.org/onlinedocs/gcc/Zero-Length.html" rel="nofollow">zero-length arrays</a> as an extension. Zero-length arrays are illegal in standard C, but gcc introduced this feature before C99 gave us flexible array members.</p> <p>In a response to a comment, I will explain why the snippet below is technically undefined behaviour. Section numbers I quote refer to C99 (ISO/IEC 9899:1999)</p> <pre><code>struct { char arr[1]; } *x; x = malloc(sizeof *x + 1024); x-&gt;arr[23] = 42; </code></pre> <p>Firstly, 6.5.2.1#2 shows a[i] is identical to (&#42;((a)+(i))), so x->arr[23] is equivalent to (&#42;((x->arr)+(23))). Now, 6.5.6#8 (on the addition of a pointer and an integer) says:</p> <blockquote> <p>"If both the pointer operand and the result point to elements of the same array object, or one past the last element of the array object, the evaluation shall not produce an overflow; otherwise, <strong>the behavior is undefined</strong>."</p> </blockquote> <p>For this reason, because x->arr[23] is not within the array, the behaviour is undefined. You might still think that it's okay because the malloc() implies the array has now been extended, but this is not strictly the case. Informative Annex J.2 (which lists examples of undefined behaviour) provides further clarification with an example:</p> <blockquote> <p>An array subscript is out of range, even if an object is apparently accessible with the given subscript (as in the lvalue expression a&#91;1]&#91;7] given the declaration int a[4][5]) (6.5.6).</p> </blockquote> http://stackoverflow.com/questions/631632/request-for-a-simple-c-code-example-that-shows-how-a-generic-or-untyped-via-void/631662#631662 2 Answer by Chris Young for Request for a simple C code example that shows how a generic or untyped (via void *) array can be used Chris Young 2009-03-10T18:31:31Z 2009-03-10T18:31:31Z <p>That's because you can't dereference a void pointer without first casting it to something else. This is because the C implementation needs to know what type of object the dereferenced pointer is.</p> <p>In addition to the union suggested already, you can use the method you allude to, but you would have to conditionally convert (implicitly or explicitly with a cast) if you want to dereference storage:</p> <pre><code>int *iptr; double *dptr; switch (x.type) { case typedouble: dptr = x.storage; // implcit conversion example // reference your "image" as dptr[i] now break; case typeint: iptr = (int *)x.storage; // explicit conversion, actually unnecessary // reference your "image" as iptr[i] now break; } </code></pre> http://stackoverflow.com/questions/628761/character-to-integer-in-c/628778#628778 10 Answer by Chris Young for Character to Integer in C Chris Young 2009-03-10T02:59:39Z 2009-03-10T02:59:39Z <p>As per other replies, this is fine:</p> <pre><code>char c = '5'; int x = c - '0'; </code></pre> <p>Also, for error checking, you may wish to check isdigit(c) is true first. Note that you cannot completely portably do the same for letters, for example:</p> <pre><code>char c = 'b'; int x = c - 'a'; // x is now not necessarily 1 </code></pre> <p>The standard guarantees that the char values for the digits '0' to '9' are contiguous, but makes no guarantees for other characters like letters of the alphabet.</p> http://stackoverflow.com/questions/617774/c-preprocessors/617778#617778 5 Answer by Chris Young for C preprocessors Chris Young 2009-03-06T05:51:27Z 2009-03-06T05:51:27Z <p>Most compilers will show you the output after the prerocessing phases. For example, with gcc, you may use the -E flag.</p> http://stackoverflow.com/questions/544662/is-there-any-ordinary-reason-to-use-open-instead-of-fopen/544693#544693 10 Answer by Chris Young for Is there any ordinary reason to use open() instead of fopen()? Chris Young 2009-02-13T04:15:49Z 2009-02-13T04:15:49Z <p>It is better to use open() if you are sticking to unix-like systems and you might like to:</p> <ul> <li>Have more fine-grained control over unix permission bits on file creation.</li> <li>Use the lower-level functions such as read/write/mmap as opposed to the C buffered stream I/O functions.</li> <li>Use file descriptor (fd) based IO scheduling (poll, select, etc.) You can of course obtain an fd from a FILE * using fileno(), but care must be taken not to mix FILE * based stream functions with fd based functions.</li> <li>Open any special device (not a regular file)</li> </ul> <p>It is better to use fopen/fread/fwrite for maximum portability, as these are standard C functions, the functions I've mentioned above aren't.</p> http://stackoverflow.com/questions/535510/what-does-it-mean-to-do-determine-something-programmatically-and-why-is-the-ter/535518#535518 12 Answer by Chris Young for What does it mean to do/determine something "programmatically" and why is the term much used on SO? Chris Young 2009-02-11T05:22:29Z 2009-02-11T05:48:46Z <p>Programmatically <a href="http://dictionary.reference.com/browse/programmatically" rel="nofollow">is a real word</a>. From another random dictionary: <a href="http://www.askoxford.com/concise_oed/programmatic?view=uk" rel="nofollow">Compact OED online</a>.</p> http://stackoverflow.com/questions/525123/how-does-memchr-work-under-the-hood/525127#525127 6 Answer by Chris Young for How does memchr() work under the hood? Chris Young 2009-02-08T03:56:04Z 2009-02-08T03:56:04Z <p>I would suggest taking a look at <a href="http://www.gnu.org/software/libc/" rel="nofollow">GNU libc</a>'s source. As for most functions, it will contain both a generic optimized C version of the function, and optimized assembly language versions for as many supported architectures as possible, taking advantage of machine specific tricks.</p> http://stackoverflow.com/questions/515171/how-to-open-ttcn-file-using-c-file-open-functions/515173#515173 1 Answer by Chris Young for How to open .ttcn file using C file open functions? Chris Young 2009-02-05T09:39:37Z 2009-02-05T10:59:18Z <p>Your assumption is wrong about extensions. If fopen is returning NULL, you should output the result of strerror(errno) or use the perror() function to see why it failed. </p> <p><strong>Edit</strong>: The problem is probably because you have "c:\tc\bin\hi.ttcn". in C, "\t" is interpreted as tab, for example.</p> <p>You could do </p> <pre><code>"c:\\tc\\bin\\hi.ttcn" </code></pre> <p>But this is extremely ugly, and your system should accept:</p> <pre><code>"c:/tc/bin/hi.ttcn" </code></pre> http://stackoverflow.com/questions/513009/is-there-something-that-i-can-do-in-c-but-i-cant-do-in-c/515308#515308 0 Answer by Chris Young for Is there something that I can do in C but I can't do in C++ ? Chris Young 2009-02-05T10:24:02Z 2009-02-05T10:24:02Z <p>C++ does not support named struct member initialization, in C you can do:</p> <p>struct { int x, y; } a = { .x = 3 };</p> <p>You can also combine this with the feature shown by <a href="http://stackoverflow.com/users/62723/matt-havener">Matt Havener</a>:</p> <p>struct { int a[3], b; } w[] = { [0].a = {1}, [1].a[0] = 2 };</p> http://stackoverflow.com/questions/507109/is-fread-possible-after-a-file-is-removed/507301#507301 3 Answer by Chris Young for Is fread possible after a file is removed? Chris Young 2009-02-03T14:35:50Z 2009-02-03T15:08:47Z <p>On some systems, such as linux, you can easily still access files that have no name on the filesystem as long as a process still has it open. There's a list of file descriptors in </p> <pre><code>/proc/&lt;pid&gt;/fd </code></pre> <p><strong>Edit</strong>: As per <a href="http://stackoverflow.com/users/3333/paul-tomblin">Paul Tomblin</a>'s comment, you can only access this directory if you are the same user as the process or root.</p> <p>For example:</p> <pre><code># Create a file with cat chris@shrubbery:~$ cat &gt; MYFILE Hello # Suspend the process and find its pid [1]+ Stopped cat &gt; MYFILE chris@shrubbery:~$ ps waux | grep cat chris 1311 0.0 0.0 5088 668 pts/6 T 14:29 0:00 cat chris 1313 0.0 0.0 5168 840 pts/6 R+ 14:29 0:00 grep cat # Inspect the list of open files chris@shrubbery:~$ cd /proc/1311/fd chris@shrubbery:/proc/1311/fd$ ls -l total 0 lrwx------ 1 chris chris 64 2009-02-03 14:29 0 -&gt; /dev/pts/6 l-wx------ 1 chris chris 64 2009-02-03 14:29 1 -&gt; /home/chris/MYFILE lrwx------ 1 chris chris 64 2009-02-03 14:29 2 -&gt; /dev/pts/6 # View MYFILE from the symlink on the /proc pseudofilesystem. chris@shrubbery:/proc/1311/fd$ cat 1 Hello # Delete the filename /home/chris/MYFILE chris@shrubbery:/proc/1311/fd$ rm /home/chris/MYFILE chris@shrubbery:/proc/1311/fd$ cat /home/chris/MYFILE cat: /home/chris/MYFILE: No such file or directory # But the process still has it open. # The /proc system knows the original name was deleted chris@shrubbery:/proc/1311/fd$ ls -l total 0 lrwx------ 1 chris chris 64 2009-02-03 14:29 0 -&gt; /dev/pts/6 l-wx------ 1 chris chris 64 2009-02-03 14:29 1 -&gt; /home/chris/MYFILE (deleted) lrwx------ 1 chris chris 64 2009-02-03 14:29 2 -&gt; /dev/pts/6 # We can still view the file, useful for debugging. chris@shrubbery:/proc/1311/fd$ cat 1 Hello </code></pre> http://stackoverflow.com/questions/506366/c-pointer-to-struct-in-the-struct-definition/506382#506382 19 Answer by Chris Young for C : pointer to struct in the struct definition Chris Young 2009-02-03T08:45:40Z 2009-02-03T08:45:40Z <p>In addition to the first answer, without a typedef and forward declaration, this should be fine too.</p> <pre><code>struct A { int a; int b; struct A *next; }; </code></pre> http://stackoverflow.com/questions/498805/signed-to-unsigned-conversions/498840#498840 2 Answer by Chris Young for signed to unsigned conversions Chris Young 2009-01-31T13:34:36Z 2009-01-31T13:34:36Z <p>There's no unary operator in d &lt;= TOTAL_ELEMENTS-2.</p> <p>The TOTAL_ELEMENTS-2 reduces to an expression with a binary operator of -. This expression then becomes unsigned because one of its operands is unsigned. </p> <p>In the case of d &lt;= TOTAL_ELEMENTS-2, d's type is also converted to unsigned int for the same reason.</p> <p>The relevant portion of the standard is section 6.3.1.8#1 (ISO/IEC 9899:1999) which says:</p> <p>"Otherwise, if the operand that has unsigned integer type has rank greater or equal to the rank of the type of the other operand, then the operand with signed integer type is converted to the type of the operand with unsigned integer type."</p> http://stackoverflow.com/questions/482375/c-strdup-function/482538#482538 1 Answer by Chris Young for C strdup() function Chris Young 2009-01-27T07:19:40Z 2009-01-27T07:19:40Z <p>You should also consider avoiding the creation of any identifier (including a function) that begins with str[a-z]. While this isn't reserved, the C standard (ISO/IEC 9899:1999) section 7.26.11 (future library directions) states "Function names that begin with str, mem, or wcs and a lowercase letter may be added to the declarations in the header."</p> http://stackoverflow.com/questions/471980/how-to-read-or-capture-ctrlsome-key-or-altsome-key-in-c/471991#471991 3 Answer by Chris Young for How to read or capture Ctrl+some key or Alt+some key in C ? Chris Young 2009-01-23T05:29:18Z 2009-01-23T05:29:18Z <p>The short answer: In a platform specific way.</p> <p>The long answer: C's Input/Output concept is that of the streams standard output and standard input. The getchar() function that you mentioned above simply reads from the standard input stream. C doesn't have any notion of keyboards, despite keyboards being a common input method. There are normally several layers of abstraction between your keyboard and what gets passed through to standard input in your C program. The mechanism to do this is implementation defined, and not part of C at all. You mentioned ASCII, but C doesn't require ASCII despite it being extremely common.</p> <p>Some libraries attempt to provide portable keyboard input facilities, such as <a href="http://www.libsdl.org/" rel="nofollow">SDL</a> and <a href="http://en.wikipedia.org/wiki/Curses_(programming_library)" rel="nofollow">curses</a>.</p> <p>See also the <a href="http://c-faq.com/osdep/index.html" rel="nofollow">comp.lang.c FAQ</a> on system dependencies, particularly 19.5.</p> http://stackoverflow.com/questions/434711/how-does-one-submit-a-potential-patch-to-the-linux-kernel/434725#434725 9 Answer by Chris Young for How does one submit a potential patch to the Linux kernel? Chris Young 2009-01-12T07:44:46Z 2009-01-12T07:44:46Z <p>Well, you could try reading <a href="http://lxr.linux.no/linux/Documentation/SubmittingPatches" rel="nofollow">Documentation/SubmittingPatches</a> in the linux kernel source tree.</p> http://stackoverflow.com/questions/416345/is-fvoid-deprecated-in-modern-c-and-c/416354#416354 28 Answer by Chris Young for is f(void) deprecated in modern C and C++ Chris Young 2009-01-06T12:37:52Z 2009-01-06T12:37:52Z <p>In C, the declaration int f(void) means a function returning int that takes no parameters. The declaration int f() means a function returning int that takes any number of parameters. Thus, if you have a function that takes no parameters in C, the former is the correct prototype.</p> <p>In C++, I believe int f(void) is deprecated, and int f() is preferred, as it specifically means a function that takes no parameters.</p> http://stackoverflow.com/questions/342632/c-programming-exercise-from-the-kr-book/342764#342764 5 Answer by Chris Young for C Programming Exercise from the K&R Book. Chris Young 2008-12-05T02:46:40Z 2008-12-05T04:14:16Z <p>I'd like to clarify the answers given so far because they seem to use phrases like "send EOF", "received EOF", "EOF character", etc. As per comments (thanks) to this answer, "send EOF" and "received EOF" are legitimate terms, but please don't think that it's a character.</p> <p>EOF is not a character at all. It is the value that getchar() (or fgetc/getc) returns if the stream is at "end-of-file" or a read error occurs. It is merely a special value outside the range of character values that getchar() will return that indicates the <strong>condition</strong> of error or end-of-file.</p> <p>It is defined by the C standard as being negative, whereas getchar returns characters as an unsigned char converted to int.</p> <p>Edit: On doing some research which I should've done before the paragraph I wrote that used to be here, I've realised some of my assumptions were completely wrong. Thanks to the commenter for pointing this out.</p> <p>Once a stream (such as stdin) is in end-of-file condition, this condition can be cleared again with clearerr() and getchar() may read more data from stdin.</p> http://stackoverflow.com/questions/336814/why-include-stdio-h-is-not-required-to-use-printf/336825#336825 20 Answer by Chris Young for Why #include <stdio.h> is *not* required to use printf()? Chris Young 2008-12-03T11:01:25Z 2008-12-03T11:19:14Z <p>You had originally tagged this C++, but it would appear to be a C program. C will automatically provide an implicit declaration for a function if there is no prototype in scope (such as due to the omission of #include &lt;stdio.h&gt;). The implicit declaration would be:</p> <pre><code>int printf(); </code></pre> <p>Meaning that printf is a function that returns an int and can take any number of arguments. This prototype happened to work for your call. You should #include &lt;stdio.h&gt;</p> <p>Finally, I should add that the current C standard (ISO/IEC 9899:1999 or colloquially "C99") does <strong>not</strong> allow implicit declarations, and this program would not conform. Implicit declarations were removed. I believe your compiler does not support C99. C++ also requires correct prototypes and does not do implicit declarations. </p> http://stackoverflow.com/questions/149869/does-ansi-c-support-signed-unsigned-bit-fields/149949#149949 7 Answer by Chris Young for Does ANSI C support signed / unsigned bit fields? Chris Young 2008-09-29T18:11:16Z 2008-11-30T21:34:50Z <p>The relevant portion of the standard (ISO/IEC 9899:1999) is 6.7.2.1 #4:</p> <blockquote> <p>A bit-field shall have a type that is a qualified or unqualified version of _Bool, signed int, unsigned int, or some other implementation-defined type.</p> </blockquote> http://stackoverflow.com/questions/281045/do-class-struct-members-always-get-created-in-memory-in-the-order-they-were-decla/281064#281064 2 Answer by Chris Young for Do class/struct members always get created in memory in the order they were declared? Chris Young 2008-11-11T14:46:14Z 2008-11-11T14:46:14Z <p>I cannot speak for C++, but in C the order is guaranteed to be the same order in memory as declared in the struct.</p> http://stackoverflow.com/questions/261557/what-do-i-need-to-read-to-understand-how-git-works/261592#261592 4 Answer by Chris Young for What do I need to read to understand how git works? Chris Young 2008-11-04T11:33:45Z 2008-11-04T11:33:45Z <p>The git source code. :-)</p> http://stackoverflow.com/questions/260962/what-is-the-advantage-of-strlmove-vs-strmove-in-c/260972#260972 4 Answer by Chris Young for What is the advantage of strlmove vs strmove in C? Chris Young 2008-11-04T05:21:13Z 2008-11-04T05:46:40Z <p>strmove, strlmove, strlcpy, strlcat are all <strong>not</strong> standard C functions, so I can't comment on what they do without knowing which specific non-standard library you're using. Standard C provides strcpy, strcat, strncat, strncpy, memmove, memcpy, etc.</p> <p>It makes sense to use strncpy over strcpy for safety if you don't know the source string will fit inside the destination buffer. However, strncpy has a major performance issue in that it <strong>always</strong> writes the amount of bytes specified for the size. That is:</p> <pre><code>char buf[4096]; strncpy(buf, "Hello", sizeof buf); </code></pre> <p>will write 'H', 'e', 'l', 'l', 'o' and fill the remaining 4091 bytes of buf with '\0'. Another thing to be aware of with strncpy is that it will not null-terminate the string if the size parameter is smaller than the source string length plus its null. For example:</p> <pre><code>char buf[5]; strncpy(buf, "Hello", sizeof buf); </code></pre> <p>will write 'H', 'e', 'l', 'l', 'o' into buf and it will not be null-terminated.</p> http://stackoverflow.com/questions/257416/what-are-some-good-resources-for-learning-c-beyond-kr/258003#258003 4 Answer by Chris Young for What are some good resources for learning C beyond K&R Chris Young 2008-11-03T05:42:00Z 2008-11-03T05:42:00Z <p>Try <a href="http://www.careferencemanual.com/" rel="nofollow">C: A Reference Manual</a> by Harbison and Steele. It covers the ISO/IEC 9899:1999 (C99) standard that is more recent that K&amp;R's latest (second) edition.</p> <p><img src="http://ecx.images-amazon.com/images/I/51R2P4EB1YL._SL500_AA240_.jpg" alt="alt text" /></p> http://stackoverflow.com/questions/253475/why-doesnt-anyone-upgrade-their-c-compiler-with-advanced-features/255507#255507 4 Answer by Chris Young for Why doesn't anyone upgrade their C compiler with advanced features? Chris Young 2008-11-01T03:53:04Z 2008-11-01T03:53:04Z <p>This "feature" will <strong>never</strong> be adopted by future C standards for one reason only: it would badly break backward compatibility. In C, struct tags have separate namespaces to normal identifiers, and this may or may not be considered a feature. Thus, this fragment:</p> <pre><code>struct elem { int foo; }; int elem; </code></pre> <p>Is perfectly fine in C, because these two elems are in separate namespaces. If a future standard allowed you to declare a struct elem without a struct qualifier or appropriate typedef, the above program would fail because elem is being used as an identifier for an int.</p> <p>An example where a future C standard does in fact break backward compatibiity is when C99 disallowed a function without an explicit return type, ie:</p> <pre><code>foo(void); /* declare a function foo that takes no parameters and returns an int */ </code></pre> <p>This is illegal in C99. However, it is trivial to make this C99 compliant just by adding an int return type. It is not so trivial to "fix" C programs if suddenly struct tags didn't have a separate namespace.</p> http://stackoverflow.com/questions/252782/strdup-what-does-it-do-in-c/252977#252977 4 Answer by Chris Young for strdup() - what does it do in C? Chris Young 2008-10-31T09:46:59Z 2008-10-31T09:46:59Z <p>No point repeating the other answers, but please note that strdup() can do anything it wants from a C perspective, since it is not part of any C standard. It is however defined by POSIX.1-2001.</p> http://stackoverflow.com/questions/232303/so-you-think-you-know-pointers/232362#232362 14 Answer by Chris Young for So you think you know pointers? Chris Young 2008-10-24T03:06:08Z 2008-10-24T20:47:20Z <p>The output is undefined behavior because %p requires that the pointer be cast to <code>void *</code> since other pointer types might not have the same size and representation as <code>void *</code>. Assuming that part of the program is corrected, the output would be implementation defined. The output would be an implementation defined representation of the following values, assuming n = the pointer value of the address of the first element of the array:</p> <pre> n n + sizeof(int) n n + 4 * sizeof(int) </pre> <p>The reason for the first 3 lines should be obvious. The reason for the last line is because <code>&amp;x</code> is of type <code>int(*)[4]</code> and not <code>int *</code>.</p> http://stackoverflow.com/questions/232861/fibonacci-code-golf/232943#232943 7 Answer by Chris Young for Fibonacci Code Golf Chris Young 2008-10-24T09:46:44Z 2008-10-24T09:53:07Z <p>22 characters with dc:</p> <pre><code>1[pdd5**v1++2/lxx]dsxx </code></pre> <p>Invoke with either:</p> <pre> dc -e'1[pdd5**v1++2/lxx]dsxx' </pre> <p>Or:</p> <pre> echo '1[pdd5**v1++2/lxx]dsxx' | dc </pre> <p>Note: not my work, poached from <a href="http://www.perlmonks.com/?node_id=626425" rel="nofollow">perlmonks</a>.</p> http://stackoverflow.com/questions/625270/does-malloc-allocate-a-contiguous-block-of-memory/625430#625430 Comment by Chris Young on Does malloc() allocate a contiguous block of memory? Chris Young 2009-10-15T06:13:16Z 2009-10-15T06:13:16Z @Robert S. Barnes: You are not incorrect, but the physical layout is entirely irrelevant to the C standard. It only matters that it appears contiguous to the program when accessed in a well-defined manner. It's equally true and irrelevant to point out that the memory might not be contiguous because it may span several pieces of silicon. http://stackoverflow.com/questions/1564701/pointer-to-literal-value Comment by Chris Young on Pointer to literal value Chris Young 2009-10-14T07:58:39Z 2009-10-14T07:58:39Z Aside from wanting to use it in a case statement, why else do you need it? In one of your answers below you said you also wanted it to apply to floats, but you can't use a float as a case statement expression anyway. http://stackoverflow.com/questions/160930/how-do-i-check-if-an-integer-is-even-or-odd/160935#160935 Comment by Chris Young on How do I check if an integer is even or odd? Chris Young 2009-08-05T12:48:09Z 2009-08-05T12:48:09Z My benchmark? What benchmark? I didn't do any benchmarking. I examined the generated assembly language. This has absolutely nothing to do with printf. http://stackoverflow.com/questions/984878/what-is-the-possible-use-for-define-for-if-false-else-for/984895#984895 Comment by Chris Young on What is the possible use for "#define for if (false) {} else for"? Chris Young 2009-06-12T04:03:09Z 2009-06-12T04:03:09Z It's very bizarre. http://stackoverflow.com/questions/894300/when-zeroing-a-struct-such-as-sockaddrin-sockaddrin6-and-addrinfo-before-use/894340#894340 Comment by Chris Young on When zeroing a struct such as sockaddr_in, sockaddr_in6 and addrinfo before use, which is correct: memset, an initializer or either? Chris Young 2009-05-21T18:32:45Z 2009-05-21T18:32:45Z Ah, I see -Werror does the job. You do indeed provide a good case against { 0 }. Is this likely the reason why Stevens et al didn't use it? http://stackoverflow.com/questions/894300/when-zeroing-a-struct-such-as-sockaddrin-sockaddrin6-and-addrinfo-before-use/894339#894339 Comment by Chris Young on When zeroing a struct such as sockaddr_in, sockaddr_in6 and addrinfo before use, which is correct: memset, an initializer or either? Chris Young 2009-05-21T18:29:07Z 2009-05-21T18:29:07Z This doesn't answer any part of my question, but yes I'm aware that calloc would do the same. I doubt it's used much, anyway. http://stackoverflow.com/questions/894300/when-zeroing-a-struct-such-as-sockaddrin-sockaddrin6-and-addrinfo-before-use/894340#894340 Comment by Chris Young on When zeroing a struct such as sockaddr_in, sockaddr_in6 and addrinfo before use, which is correct: memset, an initializer or either? Chris Young 2009-05-21T18:27:46Z 2009-05-21T18:27:46Z Thanks, with which flags can I reproduce this gcc warning? And why does it warn, given that it's common practice to initialize aggregates completely to zero with a single { 0 }? http://stackoverflow.com/questions/894300/when-zeroing-a-struct-such-as-sockaddrin-sockaddrin6-and-addrinfo-before-use/894344#894344 Comment by Chris Young on When zeroing a struct such as sockaddr_in, sockaddr_in6 and addrinfo before use, which is correct: memset, an initializer or either? Chris Young 2009-05-21T18:25:31Z 2009-05-21T18:25:31Z An object with automatic storage duration plus an initializer will be initialized every time it's declared. This is correct for a static one, but these structs are typically not declared static. http://stackoverflow.com/questions/894300/when-zeroing-a-struct-such-as-sockaddrin-sockaddrin6-and-addrinfo-before-use/894334#894334 Comment by Chris Young on When zeroing a struct such as sockaddr_in, sockaddr_in6 and addrinfo before use, which is correct: memset, an initializer or either? Chris Young 2009-05-21T18:23:33Z 2009-05-21T18:23:33Z I'd tend to agree with your answer if not for the fact that the person widely regarded as the author of the best text book on unix socket programming ever written also uses bzero. I'd ask him about it, but unfortunately he's no longer with us. http://stackoverflow.com/questions/628761/character-to-integer-in-c/628778#628778 Comment by Chris Young on Character to Integer in C Chris Young 2009-05-18T04:46:38Z 2009-05-18T04:46:38Z @Paul Tomblin: Yes for digits not letters, because, as I said in the answer, the standard guarantees '0' to '9' are contiguous but does not make such guarantees for other characters such as 'a' to 'z'. http://stackoverflow.com/questions/848705/why-is-2myarray-valid-c-syntax/848709#848709 Comment by Chris Young on Why is 2[myArray] valid C syntax? Chris Young 2009-05-11T15:51:35Z 2009-05-11T15:51:35Z kevindtimm: I think you're a bit confused. You are correct that variables (identifiers) cannot start with a numeral. With 3[a] you have an identifier spelled 'a', there is no numeral in it. It is semantically identical to *(3 + a) which is identical to *(a + 3) which is identical to a[3]. http://stackoverflow.com/questions/848705/why-is-2myarray-valid-c-syntax/848709#848709 Comment by Chris Young on Why is 2[myArray] valid C syntax? Chris Young 2009-05-11T15:48:39Z 2009-05-11T15:48:39Z Eric: The way arrays (and indeed pointers) are implemented is up to the implementation. It needn't, and often isn't, be represented anything like an int. A pointer might take up more space than can fit in an int. This is typical, but not required, in current 64 bit systems for example. Furthermore, far pointers in DOS systems were typically represented as two 16 bit words (separate segment and offset). Pointers are not arithmetic types and cannot portably be converted to and from int. http://stackoverflow.com/questions/848705/why-is-2myarray-valid-c-syntax/848711#848711 Comment by Chris Young on Why is 2[myArray] valid C syntax? Chris Young 2009-05-11T15:45:52Z 2009-05-11T15:45:52Z Sure: #include &lt;stdio.h&gt; int main(void) { char foo[] = &quot;hello&quot;; printf(&quot;%c\n&quot;, 1[foo]); return 0; } Output will be &quot;e\n&quot;. It has nothing to do with variable names starting with numbers. http://stackoverflow.com/questions/776512/understanding-evaluation-of-expressions-containing-and-operators-in-c/776563#776563 Comment by Chris Young on Understanding evaluation of expressions containing '++' and '->' operators in C. Chris Young 2009-04-22T11:43:55Z 2009-04-22T11:43:55Z Nearly equivalent. The technical difference, which I'm sure you knew, is that in the case of b = a++; or b = ++a; a is evaluated only once. http://stackoverflow.com/questions/88957/what-does-0-mean-in-c/89093#89093 Comment by Chris Young on What Does {0} Mean in C? Chris Young 2009-04-08T16:32:19Z 2009-04-08T16:32:19Z Though, of course, if mytext is being used a string, char mytext[100]; mytext[0] = '\0'; would have the same effect of giving an empty string, but only cause the implementation to zero the first byte.