Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #44.2K
2 Posted Topics
Re: [CODE] // Caesar Shift Encryption // character: Plaintext input // shift: Integer value of how far to shift right result = ( ( ( character - 65 ) + shift ) % 26 ) + 65 ; [/CODE] | |
I'm writing a small app to do automated testing of a console application. It needs to repeatedly run the app with various options and handle when the app being tested crashes. I started with system(), moved on to spawn() and have since been trying CreateProcess(). It doesn't lockup when the … |
The End.