Robert Gamble
|
Registered User
|
Professional software engineer currently focused mainly in C, Perl, Ruby, Java, Linux/UNIX, databases, and networking.
email: rgamble99@gmail.com |
|
2h |
awarded | ● Mortarboard |
|
1d |
comment |
In C macros, should one prefer do { … } while(0,0) over do { … } while(0)? I would definitely like to know what the reason for recommending this was, if you ask them and find out, please update your question with their response. |
|
1d |
comment |
In C macros, should one prefer do { … } while(0,0) over do { … } while(0)? I can't think of any reason to do this. Perhaps some tool complains with a while(0) condition along the lines of "this will never happen" but any such tool should 1) recognize that this is a very common idiom in C with macros and 2) differentiate between do...while(0) and while(0){}. Have you asked them for a rationale? |
|
Nov 20 |
accepted | When creating a CSV file, do you need to escape certain characters? |
|
Nov 19 |
comment |
Is MODULE_LICENSE in a Linux Kernel Module legally binding? If the entity violating the license (by distributing the program in violation of the GPL by imposing the proprietary license) is the entity that owns the copyright then 1) the GPL wouldn't apply since you can't do that and 2) you can't violate your own copyright. |
|
Nov 19 |
answered | Is MODULE_LICENSE in a Linux Kernel Module legally binding? |
|
Nov 19 |
accepted | Does GCC’s __attribute__((__packed__))…? |
|
Nov 18 |
answered | Does GCC’s __attribute__((__packed__))…? |
|
Nov 18 |
comment |
Does GCC’s __attribute__((__packed__))…? What do you mean by "original ordering"? Do you mean are the struct members literally in the same order as specified in the definition? |
|
Nov 17 |
answered | When creating a CSV file, do you need to escape certain characters? |
|
Nov 17 |
answered | opening a file with fopen |
|
Nov 16 |
comment |
A language that doesn’t use ‘C’ ? That doesn't really answer the question. |
|
Nov 16 |
comment |
C Problems and Solutions That site is no longer maintained, the active site is clc-wiki.net/wiki/K%26R2_solutions |
|
Nov 15 |
answered | C structs don’t define types? |
|
Nov 6 |
accepted | Seeking a C Beautifier that will insert spaces between line elements. |
|
Nov 2 |
awarded | ● Nice Answer |
|
Oct 27 |
answered | What is useful about this C syntax? |
|
Oct 26 |
accepted | Constant array types in C, flaw in standard? |
|
Oct 26 |
answered | C: Terminating the program by pressing a key |
|
Oct 25 |
accepted | malloc zeroing out memory? |
|
Oct 25 |
answered | malloc zeroing out memory? |
|
Oct 24 |
comment |
Is C faster than C++? This is true but it doesn't really help answer the question. |
|
Oct 24 |
answered | Seeking a C Beautifier that will insert spaces between line elements. |
|
Oct 24 |
accepted | Replace two or more spaces within a text file with a ; |
|
Oct 24 |
answered | Replace two or more spaces within a text file with a ; |
|
Oct 22 |
awarded | ● Guru |
|
Oct 22 |
awarded | ● Nice Answer |
|
Oct 20 |
comment |
How to pass a function pointer to a function with variable arguments? {SOLVED} Actually, this is (ironically) they only time that typedefs are required. Speaking of the type parameter for va_arg in section 7.15.1.1 of the C Standard: "The parameter type shall be a type name specified such that the type of a pointer to an object that has the specified type can be obtained simply by postfixing a * to type." This means that many non-trivial types aren't guaranteed to work, including your example, without a typedef. |
|
Oct 6 |
awarded | ● Yearling |
|
Sep 30 |
accepted | List of de facto standard keyboard shortcuts for Windows apps? |
|
Sep 17 |
awarded | ● Notable Question |
|
Sep 16 |
comment |
If you weren’t a programmer… what would you be? Exact Duplicate: stackoverflow.com/questions/443787/… |
|
Sep 2 |
awarded | ● Enlightened |
|
Sep 2 |
accepted | Packet mangling utilities besides iptables? |
|
Aug 28 |
accepted | Code Golf: Number to Words |
|
Aug 27 |
comment |
How to read a string of length ‘n’ from Standard input getch is not a standard function, getc/fgetc is. |
|
Aug 26 |
accepted | How can I find out which library is home to a given object? |
|
Aug 25 |
accepted | What are some tricks that a processor does to optimize code? |
|
Aug 24 |
accepted | List comprehension in Ruby |
|
Aug 24 |
accepted | What’s the difference between a string and a symbol in Ruby? |
|
Aug 23 |
accepted | What is the “right” way to iterate through an array in Ruby? |
|
Aug 10 |
awarded | ● Good Answer |
|
Aug 3 |
comment |
read from argv[0] It isn't a mistake and I commend you (and upvoted you) because you provided a clear answer to an unclear question, taking the time to attempt to reasonably interpret the problem. I made my comment because the OP is an apparent newbie and setting good examples for error checking is important, IMHO, especially since I see so many experienced programmers fail to do so. |
|
Aug 3 |
comment |
read from argv[0] Don't forget to check the return value of fopen before you attempt to read from theinput! |
|
Aug 3 |
comment |
read from argv[0] It isn't clear what your question is or what you are trying to accomplish, can you clarify with a full example program that demonstrates the problem? |
|
Aug 3 |
awarded | ● Enlightened |
|
Aug 3 |
awarded |
● |
|
Jul 31 |
comment |
Linux redhat kernel-headers linux/string.h is completely different from your other string.h, the former is for the string functions used by the kernel, the latter is for the string functions provided by the standard C library. |
|
Jul 31 |
comment |
Linux redhat kernel-headers Did you try "yum install kernel-headers"? |
|
Jul 29 |
awarded | ● Nice Answer |
