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 #72.9K
~525 People Reached
Favorite Forums
Favorite Tags
2 Posted Topics
A simple project that provides an interface to encrypt and decrypt strings using the next algorithms: - AES - Blowfish - Cast - DES - Idea - Rc2 - Rc4 - Seed The project uses PoCo C++ libraries, they have a nice and easy to use interface for OpenSSL I …
Re: array of strings
Hello Here is my little help: #include<stdio.h> #include<string.h> #include<malloc.h> int main(void) { char** str; char* ptr; int i = 0; /* You need to allocate memmory for you **char **str** variable A pointer is an integer of 2 or 4 bytes, and its content is the memmory address of something …
The End.
luisvaldes88