Click here to Skip to main content
15,895,370 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: HotFix Pin
Supriya Tonape5-Sep-05 1:46
Supriya Tonape5-Sep-05 1:46 
GeneralRe: HotFix Pin
ThatsAlok5-Sep-05 2:49
ThatsAlok5-Sep-05 2:49 
GeneralRe: HotFix Pin
Ravi Bhavnani5-Sep-05 3:05
professionalRavi Bhavnani5-Sep-05 3:05 
GeneralRe: HotFix Pin
Supriya Tonape5-Sep-05 3:21
Supriya Tonape5-Sep-05 3:21 
GeneralRe: HotFix Pin
ThatsAlok5-Sep-05 3:49
ThatsAlok5-Sep-05 3:49 
Questionsimple Question Pin
Eytukan4-Sep-05 23:54
Eytukan4-Sep-05 23:54 
AnswerRe: simple Question [edited] Pin
toxcct5-Sep-05 0:05
toxcct5-Sep-05 0:05 
AnswerRe: simple Question Pin
ThatsAlok5-Sep-05 0:06
ThatsAlok5-Sep-05 0:06 
Vivekuniq wrote:
int x;
for(i=1;i<=10;i++)
{
x=i;
cout<<x;
}< i="">

Here memory for variable X will allocated in Stack for entire LOOP duration


Vivekuniq wrote:
for(i=1;i<=10;i++)
{
int x;
x=i;
cout<<x;
}< i="">


Here the Memory of Variable X will allocated and deallocated in each cycle of loop!

"Opinions are neither right nor wrong. I cannot change your opinion. I can, however, change what influences your opinion." - David Crow


cheers,
Alok Gupta
VC Forum Q&A :- I/ IV

JokeRe: simple Question Pin
G Haranadh5-Sep-05 0:32
G Haranadh5-Sep-05 0:32 
JokeRe: simple Question Pin
ThatsAlok5-Sep-05 0:35
ThatsAlok5-Sep-05 0:35 
JokeRe: simple Question Pin
toxcct5-Sep-05 1:07
toxcct5-Sep-05 1:07 
GeneralRe: simple Question Pin
kakan5-Sep-05 0:36
professionalkakan5-Sep-05 0:36 
AnswerRe: simple Question Pin
ThatsAlok5-Sep-05 1:12
ThatsAlok5-Sep-05 1:12 
GeneralRe: simple Question Pin
kakan5-Sep-05 1:35
professionalkakan5-Sep-05 1:35 
AnswerRe: simple Question Pin
ThatsAlok5-Sep-05 3:12
ThatsAlok5-Sep-05 3:12 
AnswerRe: simple Question Pin
Marc Soleda5-Sep-05 0:09
Marc Soleda5-Sep-05 0:09 
AnswerRe: simple Question Pin
Eytukan5-Sep-05 0:46
Eytukan5-Sep-05 0:46 
AnswerRe: simple Question Pin
Gary R. Wheeler5-Sep-05 5:47
Gary R. Wheeler5-Sep-05 5:47 
QuestionHow to use CByteArray to store and retrieve unsigned char data Pin
snprani4-Sep-05 23:16
snprani4-Sep-05 23:16 
AnswerRe: How to use CByteArray to store and retrieve unsigned char data Pin
ThatsAlok4-Sep-05 23:50
ThatsAlok4-Sep-05 23:50 
Questionhandwolf@126.com Pin
superhandwolf4-Sep-05 23:05
superhandwolf4-Sep-05 23:05 
AnswerRe: handwolf@126.com Pin
toxcct4-Sep-05 23:15
toxcct4-Sep-05 23:15 
GeneralRe: handwolf@126.com Pin
handwolf824-Sep-05 23:30
handwolf824-Sep-05 23:30 
QuestionRe: handwolf@126.com Pin
toxcct4-Sep-05 23:33
toxcct4-Sep-05 23:33 
AnswerRe: handwolf@126.com Pin
superhandwolf5-Sep-05 1:11
superhandwolf5-Sep-05 1:11 

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.