1
vote
C Vs Lisp Conceptually
Specifically for C and Lisp, the main difference is that C allows you the freedom to tinker with small details to make things fast, whereas Lisp provides enough abstraction to allow you to only tin …
0
votes
String as array index in C
In "plain C" you can mimic using a string as an index, but not QUITE in the way you seem to be wanting. However, doing so is seldom useful and mostly an excellent way of making your code unreadable …
0
votes
keystroke generation
You're looking at quite a bit of computation towards the higher end of that.
One possible way to do it would be to have an array as a place-holder for your digit sequence, increment either …
5
votes
.o files vs .a files
A .o file is the result of compiling a single compilation unit (essentially a source-code file, with associated header files) while a .a file is one or more .o files packaged up as a library.
…
1
vote
C function conflict
Swear? As far as I am aware, there isn't much you can do if you have two libraries that expose link points with the same name and you need to link against both.
…
1
vote
Getting the number of packets in a pcap capture file?
The only method I know of is to read the file, captured frame by captured frame and increment a "packet counter. There is, however, a small frame header that contains the length of the stored frame …
1
vote
Dangerous ways of removing compiler warnings?
Commenting out (or worse, deleting) the code that generates the warning. Sure, the warning goes away, but you are more than just a little likely ending up with code that doesn't do what you intend. …
0
votes
What is the simplest way to write a timer in C/C++?
If all you need is a code snippet that lets your program rest, a call to sleep is enough (if you're OK with second granularity).
…
1
vote
0
votes
HTTP proxy server
A proxy server for what protocol? Before you know that, starting coding is not the most beneficial next step.
After you've decided on what protocol to implement, you (probably) need to read …
0
votes
How can I implement ‘tee’ programmatically in C?
There's no trivial way of doing this in C. I suspect the easiest would be to call popen(3), with tee as the command and the desired log file as an arument, then dup2(2) the file descriptor of the n …
