User profile: zsteve

User info
User name:zsteve
Email:zsteve@zsteve.phatcode.net
Name:zsteve
Location:australia
Website:http://0x4c.phatcode.net
Bio:15 year old student in year 10
I like: math, computers and programming, exercise, and other things
email @ steve@0x4c.phatcode.net
Statistical data
Gender:Male
Occupation:Student
Skills:C
C++
Assembly
History
Joined:
Number of posts:64
Latest posts:

Strange behaviour of CreateWindowEx within hiearchy causes VTable corruption?
@freddie1 : I'm attempting to call frm::WndProc to see if the virtual call works (it does). Attempti...

Strange behaviour of CreateWindowEx within hiearchy causes VTable corruption?
Hi all, I am working on an object-oriented wrapper class hierarchy for the Win32 GUI API. I have b...

(Code is entering fail-state) How do I fix?
[code] int maxOf3(int a, int b, int c){ int max=0; max = (a > b) ? a : b; max = (c > max) ? c ...

user==gullible help with while loop
[code] while (num != 5) { cout << "Please enter another number. " << endl; } [/code] The progra...

deallocate memory
the problem seems to be in the allocation. Not sure what may be wrong beyond that. Perhaps heap corr...