Search Results

9
votes

What is the origin of the term “baller” which means “pointer”?

I've never heard of it in reference to programming. I thought the term had something to do with the 20" chrome rim crowd. Thus, the correct answer is "The baller has 22s on his H2, the refe …
3
votes

Semaphore queues

The next thread to unblock on it's sem_wait() will be whatever thread the OS decides is the next one to context switch into. Nobody makes any guarantee of ordering; it depends on your …
0
votes

Rewriting C++ methods in C

The idea is that you would pass in a pointer to an SCustomKeys as the first (well, it doesn't really matter; it could be any) parameter, and use it in place of "this". …
0
votes

need hint with a custom Linux/UNIX command line utlity “cal” in C

The approach I would use for this would be to capture the output, split it into lines, and printf the lines out next to each other. I'd probably do it in Perl, though, rather than C. Or jus …
2
votes

how to read() write() into pipe() via dup2() with stdin and stdout

This looks like homework, so I'll give you a way to approach the problem: Get it working with one calendar, reading in one line at a time and writing to stdout. Now store eac …
16
votes

Learning C

I would actually just use vim, Makefiles, gcc, etc. You'll learn a lot from that, too, and I really think it's a good idea to get some experience with tools like that. It meshes well with learning …
12
votes

How to create a Singleton in C ?

You don't need to. C already has global variables, so you don't need a work-around to simulate them. …