Search Results

6
votes

Are memory leaks ever ok?

I believe the answer is no, never allow a memory leak, and I have a few reasons which I haven't seen explicitly stated. There are great technical answers here but I think the real answer hinges on …
4
votes

C’s strtok() and read only string literals

An important point that's inferred but not stated explicitly: Based on your question, I'm guessing that you're fairly new to programming in C, so I'd like to explain a little more about you …
3
votes

How to determine the state of a process (i.e. if it is a zombie)

You'll want to learn about interacting with the /proc/ "psuedo-filesystem" via typical C standard library calls. The documentation necessary to get started is included with any Linux distro and is …
4
votes

Please help me understand SQL vs C like programming?

Let me take a crack at this. I'm taking the long road here, so bear with me. Ultimately all programs, data, etc. on a computer are composed of the same stuff: ones and zeros. Nothing more, …