Thomas Padron-McCarthy

2,655
reputation
239 views

Registered User

name Thomas Padron-McCarthy
member for 1 year
seen 10 hours ago
website
location Orebro, Sweden
age 46
Programmer, teacher, reader, writer.
1d
answered array of pointers allocation
1d
answered Does accessing a single struct member pull the entire struct into the Cache?
2d
revised What’s a portable way of converting Byte-Order of strings in C
Added test runs from a little-endian and a big-endian machine
Dec
19
comment What’s a portable way of converting Byte-Order of strings in C
@Derrick: No, that's wrong. With strings, the first character will always be in the first position, and so on. It's not like multi-byte integers.
Dec
19
answered What’s a portable way of converting Byte-Order of strings in C
Dec
16
comment segfault when copying an array to a vector in Linux
sizeof(uint8) is very likely to be 1, so that is probably not the problem.
Dec
15
accepted ld: linker error
Dec
11
answered Comparing chararrays in linked list in the C programming language.
Dec
10
comment Using “assert” with pointers in C++
I would say: "should never happen under any conditions".
Dec
9
comment Operation on different data types
@asveikau: I don't see any prescriptivist views on grammar in his answer? To say that there exist rules, and that in practice those rules are often broken, is hardly more than a description.
Dec
9
comment C++: do you (really) write exception safe code?
@frunsi: Heh, sorry for confusing you! But I think that, if anything, a strange and unexplained acronym or abbreviation will discourage people more than not.
Dec
5
comment C++: do you (really) write exception safe code?
Is "EH" an established abbreviation for exception handling? I've never seen it before.
Dec
5
comment C++ can native type char hold End of File character?
I think this is a good answer, and (for C++) more correct in the details than mine. But it does get a bit complicated, because C++ is a complicated language. I mean, std::char_traits<char>::to_char_type!
Dec
5
comment C++ can native type char hold End of File character?
@Jerry: Thanks.
Dec
5
revised C++ can native type char hold End of File character?
EOF is always negative, but not necessarily (just usually) -1. Thanks to Jerry Coffin.
Dec
5
accepted C++ can native type char hold End of File character?
Dec
5
comment short type variable automatically extended to integer type?
@jpinto3912: short and long are not of a guaranteed fixed size either.
Dec
5
comment C++ can native type char hold End of File character?
@Chad: I think you're thinking of something else here. If you open a file as text or as binary doesn't change how the value EOF is stored in a char variable.
Dec
5
revised C++ can native type char hold End of File character?
Reorganized the long explanation
Dec
5
answered C++ can native type char hold End of File character?
Dec
3
answered Should I use an index column in a many to many “link” table?
Dec
1
comment Strategy for avoiding a common sql development error (misleading result on join bug)
Different start values was the idea I had. But now I can't write that answer... :)
Nov
30
comment How to sniff the number of records in a binary file before reading into an array in the C programming language?
+1 for feof. You should use the return value from the read instead.
Nov
24
comment In C is “i+=1;” atomic?
The two C / C++ language_s_!
Nov
24
comment C library function to do sort
What is _tmain?
Nov
23
answered What is a good ‘FizzBuzz’ question for a SQL programmer?
Nov
19
comment Ignore “initialization from incompatible pointer type” warnings?
@Timn: Yes, on most (all?) systems today, all pointers are of the same size, and on such a system the assembler will probably be the same. But it is not guaranteed by the standard, so next year or so someone at Intel might decide that splitting the address space into segments with different-sized pointers will make it more efficient, and then void pointers might be 64 bits while your struct pointers might be 32 bits. And your code will break. You will then have a hard time finding the problem, since you've either hidden it with explicit casts, or turned off the warnings... :)
Nov
19
comment Ignore “initialization from incompatible pointer type” warnings?
Another comment: From what I remember from reading the standard, void* is guaranteed to be able to hold a pointer to any data object, but there is no guarantee that it can hold function pointers.
Nov
19
comment Ignore “initialization from incompatible pointer type” warnings?
@Nicholaz: Agreed about what type casts mean here. But, on the other hand, you need to be really sure that you actually do know what you are doing, and if someone ports this to some architecture with different-size pointers (near! far!) then perhaps you no longer know... So, why not do it the right way, the way that perhaps not God but at least the ANSI committee intended!
Nov
19
comment Ignore “initialization from incompatible pointer type” warnings?
I don't think this is such a good idea. The function that you actually call will not match the prototype used in the call, which can be a dangerous thing to do. The cast here hides that possible problem even better than turning off the warnings, and a possible problem isn't something you want to hide.
Nov
19
revised Ignore “initialization from incompatible pointer type” warnings?
Added long explanation
Nov
19
answered Ignore “initialization from incompatible pointer type” warnings?
Nov
16
revised ANSI SQL Manual
Added a paragraph about SQL:2003, SQL:2006 and SQL:2008.
Nov
16
revised C++ STD Cin error in while loop
Typo
Nov
16
answered C++ STD Cin error in while loop
Nov
15
revised ANSI SQL Manual
Fixed the link
Nov
15
answered ANSI SQL Manual
Nov
15
answered find squareroot with a loop
Nov
15
comment C comma operator
My gcc (4.3.3), with no flags, doesn't accept it.
Nov
11
comment Question about file seeking position..
@Macroideal: You, yourself, should #define _FILE_OFFSET_BITS, in your .c file, before any #includes.
Nov
9
comment Performance of the c code
I have experienced that the profiling code that is compiled into the executable can affect the measurements, so I would definitely run without profiling too, and just measure times.
Nov
8
accepted Left Recursion in Grammar Results in Conflicts
Nov
8
comment Left Recursion in Grammar Results in Conflicts
I've added a suggestion for a updated grammar.
Nov
8
revised Left Recursion in Grammar Results in Conflicts
Added a new suggested grammar
Nov
8
revised Left Recursion in Grammar Results in Conflicts
Added the "EDIT", and the last paragraph about lookahead
Nov
8
comment Left Recursion in Grammar Results in Conflicts
@Kyle: Yes, it's not ambiguous. I've changed my answer. But now it's not much of an answer.
Nov
8
revised Left Recursion in Grammar Results in Conflicts
No, the grammar is not ambigous. I was wrong. Now I am just confused.
Nov
8
revised Left Recursion in Grammar Results in Conflicts
I may be wrong
Nov
8
answered Left Recursion in Grammar Results in Conflicts
Nov
8
comment Left Recursion in Grammar Results in Conflicts
Can you post a minimal example where you observe this effect? I don't think it works that way, and my guess is that you have some other problem with your grammar. Bison shouldn't have a problem with left or right recursion, even if left recursion is more efficient.