Click here to Skip to main content
15,893,381 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: exception handline in MAC Pin
Matthew Faithfull13-Nov-07 5:33
Matthew Faithfull13-Nov-07 5:33 
QuestionProblem with memory Allocation and deallocation Pin
manish.patel7-Nov-07 18:20
manish.patel7-Nov-07 18:20 
AnswerRe: Problem with memory Allocation and deallocation Pin
sudarshan1247-Nov-07 19:53
sudarshan1247-Nov-07 19:53 
GeneralRe: Problem with memory Allocation and deallocation Pin
manish.patel7-Nov-07 20:09
manish.patel7-Nov-07 20:09 
GeneralRe: Problem with memory Allocation and deallocation Pin
toxcct8-Nov-07 2:12
toxcct8-Nov-07 2:12 
AnswerRe: Problem with memory Allocation and deallocation Pin
Cedric Moonen7-Nov-07 20:05
Cedric Moonen7-Nov-07 20:05 
GeneralRe: Problem with memory Allocation and deallocation Pin
manish.patel7-Nov-07 20:15
manish.patel7-Nov-07 20:15 
GeneralRe: Problem with memory Allocation and deallocation Pin
Cedric Moonen7-Nov-07 20:18
Cedric Moonen7-Nov-07 20:18 
Manish_mnp wrote:
No you understood wrongly.


No, I think I perfectly understood your question Big Grin | :-D . But still new and delete is the way to go:

int Size = 10;<br />
char* pBuffer = new char[Size];<br />
// Do something with the buffer<br />
<br />
delete[] pBuffer;


Of course, you can change the value of Size at runtime.

EDIT: this works also with datatypes other than char (like int, TCHAR, ...). And you don't have to care about the size of the datatype (e.g. a long is 4 bytes), new will allocate an array large enough to contain the requested number of data, no matter their size.




Cédric Moonen
Software developer

Charting control [v1.2]

GeneralRe: Problem with memory Allocation and deallocation Pin
manish.patel7-Nov-07 21:16
manish.patel7-Nov-07 21:16 
GeneralRe: Problem with memory Allocation and deallocation Pin
Cedric Moonen7-Nov-07 21:23
Cedric Moonen7-Nov-07 21:23 
GeneralRe: Problem with memory Allocation and deallocation Pin
Nelek7-Nov-07 21:27
protectorNelek7-Nov-07 21:27 
QuestionRe: Problem with memory Allocation and deallocation Pin
Roger Broomfield7-Nov-07 21:26
Roger Broomfield7-Nov-07 21:26 
QuestionRe: Problem with memory Allocation and deallocation Pin
David Crow8-Nov-07 3:37
David Crow8-Nov-07 3:37 
AnswerRe: Problem with memory Allocation and deallocation Pin
Bram van Kampen10-Nov-07 16:02
Bram van Kampen10-Nov-07 16:02 
QuestionDLL_THREAD_ATTACH: Pin
ForNow7-Nov-07 16:34
ForNow7-Nov-07 16:34 
AnswerRe: DLL_THREAD_ATTACH: Pin
Matthew Faithfull7-Nov-07 23:05
Matthew Faithfull7-Nov-07 23:05 
GeneralRe: DLL_THREAD_ATTACH: Pin
ForNow8-Nov-07 1:13
ForNow8-Nov-07 1:13 
GeneralRe: DLL_THREAD_ATTACH: Pin
Matthew Faithfull8-Nov-07 2:05
Matthew Faithfull8-Nov-07 2:05 
GeneralRe: DLL_THREAD_ATTACH: Pin
ForNow8-Nov-07 13:53
ForNow8-Nov-07 13:53 
GeneralRe: DLL_THREAD_ATTACH: Pin
Matthew Faithfull8-Nov-07 22:27
Matthew Faithfull8-Nov-07 22:27 
GeneralRe: DLL_THREAD_ATTACH: Pin
ForNow8-Nov-07 23:16
ForNow8-Nov-07 23:16 
QuestionPerformance & Profiling... Pin
Peter Weyzen7-Nov-07 15:17
Peter Weyzen7-Nov-07 15:17 
AnswerRe: Performance &amp;amp; Profiling... Pin
Nelek7-Nov-07 21:31
protectorNelek7-Nov-07 21:31 
AnswerRe: Performance & Profiling... Pin
Blake Miller16-Nov-07 5:14
Blake Miller16-Nov-07 5:14 
QuestionSimple question about DLLS Pin
bigdenny2007-Nov-07 12:33
bigdenny2007-Nov-07 12:33 

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.