User profile: MiiNiPaa

User info
User name:MiiNiPaa
Location:Murmansk, Russia
Bio:Stop using <conio.h>. Let it rot in obscurity.
Statistical data
Gender:Male
Occupation:Other
Skills:C
C++
Perl
Java
History
Joined:
Number of posts:7820
Latest posts:

DMA using new[] and delete[]
@[b]Disch[/b] http://stackoverflow.com/a/6445794

Strangest Programming glitches
[quote]How would possibly avoid it? [/quote]Many games uses fixed point notation (Warcraft 3 for exa...

Replacing letters in a string(A with Z; B with Y; C with X; D with W; etc)
It seems like you are replaceing one letter at a time (all A to Z, then all B to Y, etc.). Try to re...

ordering algorithm
Your swap function does nothing. You are swapping (local) pointers. YOu need to swap values instead.

need help with using rng and returning strings from functions
[code]string USER_VS_COMPUTER (string RNG_GUESS()); [/code] Declare [tt]USER_VS_COMPUTER[/tt] as [i]...