Steve Jessop

23,929
Reputation
1654 views

Registered User

Name Steve Jessop
Member for 1 year
Seen 6 hours ago
Website
Location
Age
All my original contributions to StackOverflow are hereby placed into the public domain. If this is not legally possible, then anyone receiving a copy of them by any means is granted a non-exclusive perpetual license to use, distribute and modify them, and to distribute modifications, under any license or none, with or without attribution to me. Please note that this license applies only to my original contributions - quoted material and edits by me to existing material on StackOverflow are not my creations and I cannot grant rights in them.
4h
awarded  c
7h
comment What is the best way to eliminate MS Visual C++ Linker warning : “warning LNK4221” ?
I think that his "unity build" cats all the cpp files together and compiles them as a single translation unit. Hence (anonymous)::dummy is the same symbol in each and the compiler would complain about multiple definitions. His fix is to instead distinguish the dummy objects with __LINE__.
8h
comment How can I generate this pattern of numbers?
You say abused. Seems to me it's designed precisely as a 16-parallel use of a 16-entry lut, and Intel just gave it a funny name :-)
8h
comment Declaring arrays similar to C style (C++)
This was invented for C99 (at least, initializing members of a struct by name was. I've not come across it for arrays before, and I'm not quite enthusiastic enough to look it up right now). It's not in C++.
8h
comment Iterating over pair elements in a container of pairs (C++)
Let's all just spend a few moments wishing that C++ had coroutines, which would make 1->many and many->1 iterator adaptors a doddle, and mean that you could just iterate over the desired elements, in the same number of lines of code, without having to make a copy of the list. Ah, coroutines.
8h
comment GCC options to enforce Ansi C standard check?
"ANSI C isn't the same as C99". ANSI has adopted C99 as a standard. It's just that for whatever reason, C89 came to be called "ANSI C", to distinguish it from pre-standard C, and the name has stuck around.
8h
comment Design code to fit in CPU Cache?
"a modern CPU typically minimizes the overhead of looping". Well, in a simple benchmark unrolling loops usually appears to give fantastic boosts. I've certainly seen unrolling even by 2 or 4 double code speed, on a modern CPU with compiler optimisation, provided it doesn't prevent the compiler doing any vectorization ops. This is because benchmark code always fits in cache. Then in real applications, all your unrolled loops add up, as do the cache misses. Basically, time taken to do X then Y does not equal time taken to do X plus time taken to do Y...
9h
comment How can I generate this pattern of numbers?
Nice reformulation. My "best" ever use of lookup into an integer was to Gray code 2 bits per index into a 32-bit int, in order to select one of 4 values for each integer 1-31, to map them to suffixes "st", "nd", "rd", "th" (potentially looked up again, in a 64bit integer, although normally that doesn't help at all because a constant pool value is no better than a char array). Unfortunately that one-liner didn't survive localisation ;-)
12h
revised recursive binary to decimal without pow() or loops
added 324 characters in body
13h
revised recursive binary to decimal without pow() or loops
added 353 characters in body; added 15 characters in body
13h
comment recursive binary to decimal without pow() or loops
In C, nobody. In functional languages, everybody. So arguably yes, the school should teach recursion either with a functional language or a more natural example. But a recursion which is not trivially reducible to a loop is not tail-recursive, and problems which can't be made tail-recursive might be a bit beyond the level of the course at the early stage where recursion is introduced. At least, I assume that's the thinking that leads to these "do something you'd never really do, just to illustrate a point" assignments.
13h
revised recursive binary to decimal without pow() or loops
deleted 1 characters in body
13h
comment recursive binary to decimal without pow() or loops
In the context of a course assignment, I'm pretty sure that if you're told to write a "recursive function" and that you "can't use loops", it follows that a recursive call is not a loop. You may or may not agree with that definition of loop, but I'm pretty sure that here it means any procedural loop construct.
13h
answered recursive binary to decimal without pow() or loops
13h
comment recursive binary to decimal without pow() or loops
This function doesn't return a "decimal value" of anything, it returns an int.
13h
revised recursive binary to decimal without pow() or loops
edited tags
13h
revised How can I generate this pattern of numbers?
deleted 49 characters in body; deleted 3 characters in body
14h
comment Weird Scanf Issue
Hmm. Homework assignments which teach pupils that avoiding buffer overflows is "industrial grade" stuff that they don't need to know, result in programmers who can't avoid buffer overflows. If the school doesn't want its students to be able to do that, they should teach using Java, not C.
15h
comment Tech Interview Question-Is my approach correct?
With hindsight I think you could have asked up front whether your understanding of the question was correct. "a number" and "construct an array" are ambiguous: there is no one single way to "construct an array" given a range of values, and what does "a number" mean? pi? The square root of -1? Requirements-gathering is a reasonable thing to test at interview, although I don't know whether that's what the interviewer intended, or if he thought you'd understand that "construct" basically means "shuffle" and "a number" means "one of the other values from the array".
15h
comment Opening gzipped files for reading in C without creating temporary files
You have to use gzread on files opened with gzopen - C doesn't provide enough polymorphism for libraries to define "custom" file descriptors or FILE* handles that work with the POSIX or standard I/O functions. But I don't think there is a gzscanf, so you'll have to read into a buffer and use sscanf.
15h
revised How can I generate this pattern of numbers?
deleted 27 characters in body; added 89 characters in body
16h
answered How can I generate this pattern of numbers?
16h
revised Hashing function for four unsigned integers (C++)
added 326 characters in body
16h
answered Hashing function for four unsigned integers (C++)
16h
comment Hashing function for four unsigned integers (C++)
"I'm wanting to hash these four integers, so I can compare the output of this function to future outputs." Doesn't necessarily follow. If you were testing a function which output strings, you wouldn't have to hash to 32 or 64 bits in order to do regression tests. In your case you're giving yourself a headache in order to save 50% storage space (supposing you use 64 bits instead of 128). Is it worth it? Have you tried using gzip instead?
16h
comment Why don’t win32 API functions have overloads and instead use Ex as suffix?
I'd say it's the other way around - the reason name mangling doesn't account (and doesn't have to account) for function parameters is that C doesn't support overloading. In 1980, the C language was a consequence of its implementation, but in 2009 C implementations are a consequence of the language standard. Name mangling schemes are not part of the standard, and for example MSVC mangles void func(int) to _func for cdecl, _func@4 for stdcall and @func@4 for fastcall.
17h
comment Tech Interview Question-Is my approach correct?
I'd potentially fail that. I'm simply incapable of keeping in my head a thousand lists of the top 5 best and worst ever blah blah. Ask me what my least favourite ever recipe is and what I'd do to improve it. I have no idea, but I'm not sure this tells you anything about how good I am at cooking. Then again, there's no rule against lying when asked a subjective question, or saying "I don't know about worst, but this is pretty bad" ;-)
17h
comment What range of values can integer types store in C++
It's especially untrue that long int must be 4 bytes. It's 8 on 64bit linux, which is not some obscure platform you'll never encounter. That first link is just bogus, the author either hasn't read the standard or else is lying to keep things simple for noobs.
17h
comment Need To Build Simple DNS Resolver in C
Is this homework? If not, your best bet is probably to heavily "plagiarise" djbdns (or just use it). Except that it would not be plagiarism, because the source code for djbdns is in the public domain. If you're running some version of UNIX then even easier, since it will probably work unmodified.
1d
comment Why is that data structures usually have a size of 2^n ?
"allocation granularity" Can go horribly wrong, though. If your memory allocator has any per-item overhead (to store the size of the allocation, perhaps), then a power of two actually makes the worst possible use of allocator granularity. Best to ignore the issue and do what you say first, which is to pick the most convenient size, hope for the best, and do platform-specific optimisations if necessary. Or if you want to count on it then do what many games do: write your own allocator to remove all doubt.
1d
comment What next generation low level language is the best bet to migrate the code base ?
And yes, I am saying that so that vibrant, dynamic COBOL shops doing exciting things with cutting edge concepts can come along and make me an "outrageous" offer. If there are going to be outrageous offers in 10 years just for knowing C/C++, then sign me up for those too!
1d
comment What next generation low level language is the best bet to migrate the code base ?
Are you kidding me? Double my salary and I'll learn COBOL for you. Heck, I'll learn it anyway if it's needed for the job. The problem that legacy COBOL systems have isn't that programmers aren't prepared to learn COBOL no matter what the money, it's that the average legacy system (in any language) is boring, and nobody wants to take a job that screams "maintain an old system and never invent anything again as long as you live" if they can avoid it. Rightly or wrongly I don't know, but COBOL is like a sign saying "we're trapped in the system architecture of ancient times".
1d
revised I am new to threads, What does this compile error mean?
Formatting ate some asterisks in the error message
1d
answered big integers with fixed length
1d
comment Does my C++ compiler optimize my code?
@jalf: no, there could be a conspiracy between MS and/or GNU, with Intel and/or AMD, which means that the CPU spots identifiers steganographically concealed in code from the compiler, and switches into a special mode such that those apparent vector opcodes are de-vectorised, and don't use the SIMD circuitry at all. If you want to be silly ;-)
2d
revised not sure whats wrong can anyone help
deleted 1 characters in body; added 145 characters in body; added 41 characters in body
2d
revised not sure whats wrong can anyone help
added 572 characters in body; added 4 characters in body; added 21 characters in body; added 226 characters in body
2d
revised not sure whats wrong can anyone help
added 294 characters in body; added 21 characters in body
2d
answered not sure whats wrong can anyone help
2d
comment Why does C have a distinction between -> and . ?
I'm not convinced that "novices get confused which to use" is a good reason to make this change. It's actually a good kind of confusion, because regardless of the member-access syntax novice C programmers need to understand the difference between pointers and (other) objects, because they'll still need to know the difference when passed as parameters. The day you stop being confused is the day you understand pointers...
2d
comment Why does C have a distinction between -> and . ?
If it really was redundant, then . could be maintained as a synonym for ->. People who wanted to maintain the distinction could use -> with pointers and . with structs, in the same way that some C++ programmers (try to) declare POD classes with struct and non-POD classes with class. Then the compiler wouldn't help, so people would make mistakes, and ask for a compiler option to enforce the difference, and be back where they started ;-)
2d
comment Why does the call to bsearch() crash the presented program?
Another option would be not to allocate buffers for each word at all. You don't use it for anything else, so you could perhaps modify the data in buf. Write a NUL byte at the end of each word (I'm guessing currently there are spaces or linebreaks between the words?), replace any capital letters with lowercase, and write a pointer to the start of each word in to the words array. Coming from Java this probably seems a bit hacky, just turning one big string into lots of little ones, but avoiding too much memory allocation is often a concern in practical C code.
2d
comment Problem with protected fields in base class in c++
The reason for this template behaviour, by the way, is that at the point where the DerivedClass template is defined, the compiler has no way of knowing whether BaseClass<T> is going to have a member value or not. You might late specialise BaseClass<int> so that it doesn't have one, and then try to instantiate DerivedClass<int>. So the template definition is supposed to be rejected. By adding the extra information you're saying "it's OK, what value is depends on T, so don't expect to be able to find it yet".
2d
comment Problem with protected fields in base class in c++
What do you mean "inherit the protected fields"? Any subclass always has all fields of its base classes, whether they're public, protected or private. The question is who can access them - if the member is protected, that means only code inside DerivedClass can access the member, and code outside DerivedClass looking at an object of type DerivedClass cannot access it.
2d
revised Why does the call to bsearch() crash the presented program?
added 855 characters in body; deleted 2 characters in body
2d
comment Why does the call to bsearch() crash the presented program?
+1 beat me to it.
2d
answered Why does the call to bsearch() crash the presented program?
2d
comment What’s wrong with type classes?
Fair enough. I answered mainly because I happened to know that Concepts weren't pulled because of any kind of "reasoning against type classes". I can't do Haskell, and I thought the classes for a type had to be declared along with the type. So I guess you don't have to pick a stance - you leave it to the person who wants to use the one with the other, and I presume the type might be known in some contexts to implement the required behaviour, but that not be known in others. In which case I guess no, no significant disadvantages.
2d
revised #define f(g,g2) g##g2
Correct a typo
2d
comment #define f(g,g2) g##g2
@nobugz: what? The above is a program, albeit not quite legal C. And the program prints 100. There is a macro in the program sure, but in saying, "the above program prints 100", is Shishir not referring, correctly, to the whole program and not to the macro?