Tagged Questions

3
votes
6answers
1k views

How to initialise a C program using file, environment and/or command line?

In C, how to configure the initial settings for some program, using key-value pairs, with any or all of: a plain text configuration file, environment variables, and options on the command line. Also, ...
1
vote
3answers
735 views

GetPrivateProfileString - c++ class - return string - memory pre calculation

In GetPrivateProfileString, lpReturnedString returns the string value present in the key of a particular section of an ini file. My question is that how will i know exactly, how much memory has to be ...