User profile: Disch

User info
User name:Disch
Bio:People actually look at these profiles?
History
Joined:
Number of posts:13686
Latest posts:

DMA using new[] and delete[]
Yes that is the analogy I was referring to

DMA using new[] and delete[]
delete doesn't actually delete memory. The memory still exists, your program just doesn't have it a...

Output of this code snippet?
You could try actually compiling it to see for yourself. =P

Polymorphism
[code] Base rBase; [/code] This creates an object of type [code]Base[/code]. You cannot change the...

Is there a more succinct way to use toupper? to make one char uppercase in string?
[code] name[2] = toupper(name[2]); [/code]