Posts
 
Reputation
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
~566 People Reached
Favorite Forums
Favorite Tags
c x 4

2 Posted Topics

Member Avatar for dedenfk

[CODE] // Caesar Shift Encryption // character: Plaintext input // shift: Integer value of how far to shift right result = ( ( ( character - 65 ) + shift ) % 26 ) + 65 ; [/CODE]

Member Avatar for Greg_R
0
137
Member Avatar for Greg_R

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 …

Member Avatar for Greg_R
0
429

The End.