Suppose you want to create an application which you want to limit to a single running instance, like some image viewers do for example. Also, you need different users on a Terminal Server not to conflict with each other. Oh, and you’re coding in C#. A possible solution to the problem is the one described …
Tag: c
The meaning of const in C
John Engelhart posted to Cocoa-dev a detailed explanation of what exactly const means in C programs. Keep in mind that he’s talking about C, not C++ (where const has a stronger meaning and even a slightly different semantic when used to declare constant values). Still, it’s worth reading.