Search Results

5
votes

Simplest Way To Open and Use a Socket in C

You don't mention what platform you are on, but a copy of Unix Network Programming by Stevens would be a good addition to your …
4
votes

Algorithm: Keeping count of key/value pair in NSDictionary

You may want to rethink how you are structuring your data. I'd track something like this while adding to the NSArray instead of trying to discover it at a later time. You might create a new class t …
5
votes

What are some of the drawbacks to using C-style strings?

Well, to comment on your specific example, you don't know that the data returned by your call to df will fit into your buffer. Never trust un-sanatized input into your application, even when it is …
0
votes

reading FAT12 image file in C

On Linux you can just mount it using the loopback device. …
1
vote

Standard C or Python libraries to compute standard deviation of normal distribution.

Take a look at the sciPy Project, it should have what you need. …
0
votes

C language problem

Ok, the code as presented is a pile of crap. I will leave it as an exercise for you to sort out what I fixed for you: #include <stdio.h> int main(int argc, char *argv[]) { …