how to code email obfuscator in c++

Discussion in 'C++' started by chichi, Jan 28, 2010.

  1. chichi

    chichi New Member

    Joined:
    Jan 28, 2010
    Messages:
    5
    Likes Received:
    0
    Trophy Points:
    0
    i've got confuse when i try to code email obfuscator . . any body helps me? :pleased:
     
  2. Gene Poole

    Gene Poole New Member

    Joined:
    Nov 10, 2009
    Messages:
    93
    Likes Received:
    5
    Trophy Points:
    0
    Without being able to read you mind it will be very difficult to help you.

    Please describe what the problem is, and post some of your code so we can see what you are confused about.
     
    shabbir likes this.
  3. chichi

    chichi New Member

    Joined:
    Jan 28, 2010
    Messages:
    5
    Likes Received:
    0
    Trophy Points:
    0
    i'm new at coding. so, i can't code it by myself.

    will u give me some clues to code it?? :confused:
     
  4. chichi

    chichi New Member

    Joined:
    Jan 28, 2010
    Messages:
    5
    Likes Received:
    0
    Trophy Points:
    0
    #include "stdio.h"
    #include "string.h"
    #include "conio.h"
    int main (){
    char email[20];
    printf ("Email : "); gets (email);
    for (int i=0; i<strlen(email); i++){
    printf ("%x", email);
    }
    printf ("\n");
    for (int i=0; i<strlen(email); i++){
    printf ("%c", email);
    }
    getch();
    }
     
  5. chichi

    chichi New Member

    Joined:
    Jan 28, 2010
    Messages:
    5
    Likes Received:
    0
    Trophy Points:
    0
    How to make the output be like this :
    sam@sam.com is converted to:
    sam@sam.com
    Conversion Details
    Text HTML or Text
    s s
    a a
    m m
    @ @
    s s
    a a
    m m
    . .
    c c
    o o
    m m

    can u help me? :confused:
     

Share This Page

  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.
    Dismiss Notice