EliteZ [ 0day (xc) Our ] News : PhD Thesis Crypto , How to Cheat Array with Encryption and Perfect Algorithm … . by Lord Jesus Christ with skraito , source code included … . Enjoy , always use it , Since it is open Source you can have random password always … .

  1. /* immanuel yohanes patra (skraito) with Lord ( Jesus Christ )
  2.  * Thank You Lord ( Jesus Christ ) for this knowledge
  3.  * Coded in Pekanbaru at 02-SEP-2013 07:16 pm
  4.  * Love ya all True Jesus Church, my comrade as christian
  5.  * http://www.tjc.org
  6.  * and lastly to our team 0x71, http://0x71.org
  7.  * Purpose of the program :
  8.  * Testing C++ and learning
  9.  *
  10.  */
  11. #include <iostream>
  12. usingnamespace std;
  13. void test (char first_strings[], char second_strings[]);
  14. int main (){
  15. /* Declaration of all variable */
  16. char first_string[28], second_string[28];
  17. cout<<“==========================================”;
  18. cout<< endl <<“Enter your first string to encrypt : “;
  19. cin.getline(first_string, 27);
  20. cout<<“Enter your second string to encrypt : “;
  21. cin.getline(second_string, 27);
  22. cout<<“result is : “;
  23.     test(first_string,second_string);
  24. return0;
  25. }
  26. void test (char first_strings[], char second_strings[]){
  27. /* Declaration of variables */
  28. int x =0;
  29. int y =0;
  30. while((first_strings[x]!=’\0‘)||( second_strings[y]!=’\0‘))
  31. {
  32. if(first_strings[x]!=’\0‘){
  33. cout<< first_strings[x];
  34.         x++;
  35. }
  36. if(second_strings[y]!=’\0‘){
  37. cout<< second_strings[y];
  38.         y++;
  39. }
  40. }
  41. cout<< endl;
  42. }

Loading

Leave a Reply

Your email address will not be published. Required fields are marked *