Click here to Skip to main content
15,915,336 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Integrating a Library into a VC++ Project Pin
Nelek8-Nov-07 22:30
protectorNelek8-Nov-07 22:30 
GeneralRe: Integrating a Library into a VC++ Project Pin
bigdenny2008-Nov-07 22:42
bigdenny2008-Nov-07 22:42 
AnswerRe: Integrating a Library into a VC++ Project Pin
Cedric Moonen8-Nov-07 22:31
Cedric Moonen8-Nov-07 22:31 
GeneralRe: Integrating a Library into a VC++ Project Pin
bigdenny2008-Nov-07 22:42
bigdenny2008-Nov-07 22:42 
QuestionAutomatic variable Pin
George_George8-Nov-07 22:07
George_George8-Nov-07 22:07 
AnswerRe: Automatic variable Pin
Rajasekharan Vengalil8-Nov-07 23:25
Rajasekharan Vengalil8-Nov-07 23:25 
GeneralRe: Automatic variable Pin
George_George9-Nov-07 2:35
George_George9-Nov-07 2:35 
GeneralRe: Automatic variable Pin
Rajasekharan Vengalil9-Nov-07 4:41
Rajasekharan Vengalil9-Nov-07 4:41 
Sure. Here it is:


<quote>
Automatic variables are variables local to a block. They are automatically allocated on the stack when that block of code is entered. When the block exits, the variables are automatically deallocated. Note that automatic variables are often called local variables.

The C storage class for automatic variables is auto; however auto is assumed unless otherwise specified. The basic syntax used to declare automatic variables in C is as follows

[storage_class] data_type variable_1, variable_2, ... variable_n;

An automatic variable will have an undefined value when declared, so it is good practice to initialize it with a valid value before using it.
</quote>



GeneralRe: Automatic variable Pin
George_George9-Nov-07 21:18
George_George9-Nov-07 21:18 
GeneralRe: Automatic variable Pin
super_ttd16-Nov-07 6:13
super_ttd16-Nov-07 6:13 
AnswerRe: Automatic variable Pin
toxcct9-Nov-07 2:23
toxcct9-Nov-07 2:23 
GeneralRe: Automatic variable Pin
George_George9-Nov-07 2:34
George_George9-Nov-07 2:34 
GeneralRe: Automatic variable Pin
toxcct9-Nov-07 2:35
toxcct9-Nov-07 2:35 
JokeRe: Automatic variable Pin
David Crow9-Nov-07 4:10
David Crow9-Nov-07 4:10 
JokeRe: Automatic variable Pin
Matthew Faithfull9-Nov-07 5:02
Matthew Faithfull9-Nov-07 5:02 
AnswerRe: Automatic variable Pin
David Crow9-Nov-07 4:12
David Crow9-Nov-07 4:12 
GeneralRe: Automatic variable Pin
George_George9-Nov-07 21:15
George_George9-Nov-07 21:15 
QuestionProblem associating document to application [modified] Pin
Nelek8-Nov-07 21:15
protectorNelek8-Nov-07 21:15 
QuestionLinearGradientMode equivalent in VC++ 6.0 Pin
Try8-Nov-07 21:06
Try8-Nov-07 21:06 
AnswerRe: LinearGradientMode equivalent in VC++ 6.0 Pin
Hamid_RT8-Nov-07 21:12
Hamid_RT8-Nov-07 21:12 
AnswerRe: LinearGradientMode equivalent in VC++ 6.0 Pin
Michael Dunn8-Nov-07 21:43
sitebuilderMichael Dunn8-Nov-07 21:43 
AnswerRe: LinearGradientMode equivalent in VC++ 6.0 Pin
Try8-Nov-07 22:07
Try8-Nov-07 22:07 
GeneralRe: LinearGradientMode equivalent in VC++ 6.0 Pin
bob169729-Nov-07 2:04
bob169729-Nov-07 2:04 
QuestionGetPrivateProfileSection Pin
rp_suman8-Nov-07 20:41
rp_suman8-Nov-07 20:41 
AnswerRe: GetPrivateProfileSection Pin
Hamid_RT8-Nov-07 21:13
Hamid_RT8-Nov-07 21:13 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.