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.
Tag: software development
A little rant about .NET’s ReportViewer
The .NET Framework 2.0 contains a component called ReportViewer which can be used to generate reports in different formats (HTML, PDF, etc…). After having used it for a couple of reports in a web application, I came to believe that the only good thing about it is that it’s free (when used in Local mode). …